commit bash-20150306 snapshot

This commit is contained in:
Chet Ramey
2015-03-09 11:12:00 -04:00
parent 8a0829e94a
commit 2171061f5f
22 changed files with 470 additions and 377 deletions
+1 -3
View File
@@ -52,7 +52,7 @@ int
mkdir_builtin (list)
WORD_LIST *list;
{
int opt, pflag, omode, rval, octal, nmode, parent_mode, um;
int opt, pflag, omode, rval, nmode, parent_mode;
char *mode;
WORD_LIST *l;
@@ -90,7 +90,6 @@ mkdir_builtin (list)
builtin_error ("invalid file mode: %s", mode);
return (EXECUTION_FAILURE);
}
octal = 1;
}
else if (mode)
{
@@ -101,7 +100,6 @@ mkdir_builtin (list)
builtin_error ("invalid file mode: %s", mode);
return (EXECUTION_FAILURE);
}
octal = 0;
}
/* Make the new mode */