1) Fix so -a honors the -n ("do nothing") option. Before, if the directory

given for -a did not exist, then newsyslog would always try to create
   it, even if -n was specified.
2) When -a processing *does* create the directory, have it check the result
   from mkdir(), and immediately error-out if that failed.

PR:		bin/46974
MFC after:	3 weeks
This commit is contained in:
Garance A Drosehn 2003-02-24 02:09:02 +00:00
parent 060958481a
commit 27f1bc0c71
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=111398

View File

@ -1186,6 +1186,7 @@ movefile(char *from, char *to, int perm, int owner_uid, int group_gid)
static void
createdir(char *dirpart)
{
int res;
char *s, *d;
char mkdirpath[MAXPATHLEN];
struct stat st;
@ -1195,14 +1196,25 @@ createdir(char *dirpart)
for (;;) {
*d++ = *s++;
if (*s == '/' || *s == '\0') {
*d = '\0';
if (lstat(mkdirpath, &st))
mkdir(mkdirpath, 0755);
if (*s != '/' && *s != '\0')
continue;
*d = '\0';
res = lstat(mkdirpath, &st);
if (res != 0) {
if (noaction) {
printf("mkdir %s\n", mkdirpath);
} else {
res = mkdir(mkdirpath, 0755);
if (res != 0)
err(1, "Error on mkdir(\"%s\") for -a",
mkdirpath);
}
}
if (*s == '\0')
break;
}
if (verbose)
printf("created directory '%s' for -a\n", dirpart);
}
/*-