| 21 |
|
|
| 22 |
#include "system.h" |
#include "system.h" |
| 23 |
#include <quotearg.h> |
#include <quotearg.h> |
| 24 |
|
#include <errno.h> |
| 25 |
|
|
| 26 |
#if HAVE_UTIME_H |
#if HAVE_UTIME_H |
| 27 |
# include <utime.h> |
# include <utime.h> |
| 408 |
else if ((errno == ENOSYS /* Automounted dirs on Solaris return |
else if ((errno == ENOSYS /* Automounted dirs on Solaris return |
| 409 |
this. Reported by Warren Hyde |
this. Reported by Warren Hyde |
| 410 |
<Warren.Hyde@motorola.com> */ |
<Warren.Hyde@motorola.com> */ |
| 411 |
|| ERRNO_IS_EACCESS) /* Turbo C mkdir gives a funny errno. */ |
|| ERRNO_IS_EACCES) /* Turbo C mkdir gives a funny errno. */ |
| 412 |
&& access (file_name, W_OK) == 0) |
&& access (file_name, W_OK) == 0) |
| 413 |
continue; |
continue; |
| 414 |
|
|