diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-11-27 16:49:55 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-11-27 16:49:55 +0000 |
commit | d9e15f206840219bb0f39c912a42fdcf8cbcaed6 (patch) | |
tree | ffdef7f5ab4a33038d0a62c9355b48f362aa463e /libbb/obscure.c | |
parent | 079f8afa0a16112cbaf7012c82b38b7358b82141 (diff) | |
download | busybox-w32-d9e15f206840219bb0f39c912a42fdcf8cbcaed6.tar.gz busybox-w32-d9e15f206840219bb0f39c912a42fdcf8cbcaed6.tar.bz2 busybox-w32-d9e15f206840219bb0f39c912a42fdcf8cbcaed6.zip |
style cleanup: return(a) -> return a, part 2
Diffstat (limited to 'libbb/obscure.c')
-rw-r--r-- | libbb/obscure.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/obscure.c b/libbb/obscure.c index 56aacc910..7d839d624 100644 --- a/libbb/obscure.c +++ b/libbb/obscure.c | |||
@@ -164,7 +164,7 @@ int obscure(const char *old, const char *newval, const struct passwd *pwdp) | |||
164 | if ((msg = obscure_msg(old, newval, pwdp))) { | 164 | if ((msg = obscure_msg(old, newval, pwdp))) { |
165 | printf("Bad password: %s.\n", msg); | 165 | printf("Bad password: %s.\n", msg); |
166 | /* If user is root warn only */ | 166 | /* If user is root warn only */ |
167 | return (getuid())? 1 : 0; | 167 | return getuid() ? 1 : 0; |
168 | } | 168 | } |
169 | return 0; | 169 | return 0; |
170 | } | 170 | } |