254 |
|
|
255 |
if (file == NULL) |
if (file == NULL) |
256 |
{ |
{ |
257 |
perr ("failed to add directory: %s\n", |
perr ("failed to add directory: %s (%s)\n", |
258 |
strerror (errno)); |
strerror (errno), uar_strerror (uar)); |
259 |
uar_close (uar); |
uar_close (uar); |
260 |
return; |
return; |
261 |
} |
} |
396 |
|
|
397 |
if (params.file == NULL) |
if (params.file == NULL) |
398 |
{ |
{ |
399 |
perr ("failed to read '%s': %s", file, |
perr ("failed to read '%s': %s\n", file, |
400 |
strerror (errno)); |
strerror (errno)); |
401 |
exit (1); |
exit (1); |
402 |
} |
} |
414 |
|
|
415 |
if (params.cwd == NULL) |
if (params.cwd == NULL) |
416 |
{ |
{ |
417 |
perr ("failed to change working directory to '%s': %s", dir, |
perr ("failed to change working directory to '%s': %s\n", |
418 |
strerror (errno)); |
dir, strerror (errno)); |
419 |
exit (1); |
exit (1); |
420 |
} |
} |
421 |
} |
} |