diff options
Diffstat (limited to 'cp_mv.c')
-rw-r--r-- | cp_mv.c | 10 |
1 files changed, 4 insertions, 6 deletions
@@ -256,18 +256,16 @@ extern int cp_mv_main(int argc, char **argv) | |||
256 | int state = 0; | 256 | int state = 0; |
257 | char *pushd, *d, *p; | 257 | char *pushd, *d, *p; |
258 | 258 | ||
259 | if ((pushd = getcwd(NULL, BUFSIZ + 1)) == NULL) { | 259 | if ((pushd = xgetcwd(0)) == NULL) |
260 | perror_msg("getcwd()"); | ||
261 | continue; | 260 | continue; |
262 | } | 261 | |
263 | if (chdir(baseDestName) < 0) { | 262 | if (chdir(baseDestName) < 0) { |
264 | perror_msg("chdir(%s)", baseSrcName); | 263 | perror_msg("chdir(%s)", baseSrcName); |
265 | continue; | 264 | continue; |
266 | } | 265 | } |
267 | if ((d = getcwd(NULL, BUFSIZ + 1)) == NULL) { | 266 | if ((d = xgetcwd(0)) == NULL) |
268 | perror_msg("getcwd()"); | ||
269 | continue; | 267 | continue; |
270 | } | 268 | |
271 | while (!state && *d != '\0') { | 269 | while (!state && *d != '\0') { |
272 | if (stat(d, &sb) < 0) { /* stat not lstat - always dereference targets */ | 270 | if (stat(d, &sb) < 0) { /* stat not lstat - always dereference targets */ |
273 | perror_msg("stat(%s)", d); | 271 | perror_msg("stat(%s)", d); |