diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-08-09 08:10:13 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-08-09 08:10:13 +0000 |
commit | 501bfe2630054f9988e08a5d77e1b1ff2abc78bb (patch) | |
tree | 433c22c02b10cffd596e2b7a54da6cba86604010 /libbb | |
parent | 22a80d1e7d3f83b7abc0e83e71b0056c2d18ebe3 (diff) | |
download | busybox-501bfe2630054f9988e08a5d77e1b1ff2abc78bb.tar.gz |
stat: fix option -Z segv (bug 1454)
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/make_directory.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/make_directory.c b/libbb/make_directory.c index d540ad133..8841c95d3 100644 --- a/libbb/make_directory.c +++ b/libbb/make_directory.c @@ -98,6 +98,6 @@ int bb_make_directory (char *path, long mode, int flags) } while (1); - bb_perror_msg ("cannot %s directory '%s'", fail_msg, path); + bb_perror_msg("cannot %s directory '%s'", fail_msg, path); return -1; } |