diff options
Diffstat (limited to 'toys/posix/patch.c')
-rw-r--r-- | toys/posix/patch.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/toys/posix/patch.c b/toys/posix/patch.c index fbad1fb9..181af2a1 100644 --- a/toys/posix/patch.c +++ b/toys/posix/patch.c @@ -397,8 +397,7 @@ void patch_main(void) if ((!strcmp(oldname, "/dev/null") || !oldsum) && access(name, F_OK)) { printf("creating %s\n", name); - if (mkpathat(AT_FDCWD, name, 0, 2)) - perror_exit("mkpath %s", name); + if (mkpath(name)) perror_exit("mkpath %s", name); TT.filein = xcreate(name, O_CREAT|O_EXCL|O_RDWR, 0666); } else { printf("patching %s\n", name); |