diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-11-01 10:25:35 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-11-01 10:25:35 +0000 |
commit | 92258541449581302e180d05e827e27d35030a18 (patch) | |
tree | 99c5ad443f69860833c8ef37e142fddfedb90872 /loginutils/adduser.c | |
parent | 048c93cc5593d53d6243c3e15dc8a5b0072a6083 (diff) | |
download | busybox-w32-92258541449581302e180d05e827e27d35030a18.tar.gz busybox-w32-92258541449581302e180d05e827e27d35030a18.tar.bz2 busybox-w32-92258541449581302e180d05e827e27d35030a18.zip |
mostly style fixes
Diffstat (limited to 'loginutils/adduser.c')
-rw-r--r-- | loginutils/adduser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/loginutils/adduser.c b/loginutils/adduser.c index e358f70eb..44516ef5a 100644 --- a/loginutils/adduser.c +++ b/loginutils/adduser.c | |||
@@ -180,7 +180,7 @@ int adduser_main(int argc, char **argv) | |||
180 | /* create string for $HOME if not specified already */ | 180 | /* create string for $HOME if not specified already */ |
181 | if (!pw.pw_dir) { | 181 | if (!pw.pw_dir) { |
182 | snprintf(bb_common_bufsiz1, BUFSIZ, "/home/%s", argv[optind]); | 182 | snprintf(bb_common_bufsiz1, BUFSIZ, "/home/%s", argv[optind]); |
183 | pw.pw_dir = &bb_common_bufsiz1[0]; | 183 | pw.pw_dir = &bb_common_bufsiz1[0]; |
184 | } | 184 | } |
185 | 185 | ||
186 | /* create a passwd struct */ | 186 | /* create a passwd struct */ |