From: Mike Frysinger Date: Sun, 8 Jan 2006 11:15:53 +0000 (-0000) Subject: declare const for fun X-Git-Tag: 1_1_0~371 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=e87ae0bd4f6d88b891d2c9593b8cc7670dd25597;p=oweals%2Fbusybox.git declare const for fun --- diff --git a/loginutils/passwd.c b/loginutils/passwd.c index b60b8973e..d18cc1e12 100644 --- a/loginutils/passwd.c +++ b/loginutils/passwd.c @@ -31,7 +31,7 @@ static int get_algo(char *a) } -static int update_passwd(const struct passwd *pw, char *crypt_pw) +static int update_passwd(const struct passwd *pw, const char *crypt_pw) { char filename[1024]; char buf[1025];