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 /loginutils | |
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 'loginutils')
-rw-r--r-- | loginutils/passwd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/loginutils/passwd.c b/loginutils/passwd.c index 54f35d2d5..2811ab72e 100644 --- a/loginutils/passwd.c +++ b/loginutils/passwd.c | |||
@@ -261,16 +261,16 @@ static int create_backup(const char *backup, FILE * fp) | |||
261 | static int i64c(int i) | 261 | static int i64c(int i) |
262 | { | 262 | { |
263 | if (i <= 0) | 263 | if (i <= 0) |
264 | return ('.'); | 264 | return '.'; |
265 | if (i == 1) | 265 | if (i == 1) |
266 | return ('/'); | 266 | return '/'; |
267 | if (i >= 2 && i < 12) | 267 | if (i >= 2 && i < 12) |
268 | return ('0' - 2 + i); | 268 | return ('0' - 2 + i); |
269 | if (i >= 12 && i < 38) | 269 | if (i >= 12 && i < 38) |
270 | return ('A' - 12 + i); | 270 | return ('A' - 12 + i); |
271 | if (i >= 38 && i < 63) | 271 | if (i >= 38 && i < 63) |
272 | return ('a' - 38 + i); | 272 | return ('a' - 38 + i); |
273 | return ('z'); | 273 | return 'z'; |
274 | } | 274 | } |
275 | 275 | ||
276 | static char *crypt_make_salt(void) | 276 | static char *crypt_make_salt(void) |