From: Ben Laurie Date: Tue, 28 Jun 2005 13:07:46 +0000 (+0000) Subject: Nasty fix for another warning, but all I have the patience for right now. X-Git-Tag: OpenSSL_0_9_8~18 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=f18dd687c847c221fa8d610e5e9dbadcc8e5a73d;p=oweals%2Fopenssl.git Nasty fix for another warning, but all I have the patience for right now. --- diff --git a/apps/passwd.c b/apps/passwd.c index 6965c6e090..9ca25dd1da 100644 --- a/apps/passwd.c +++ b/apps/passwd.c @@ -474,7 +474,8 @@ static int do_passwd(int passed_salt, char **salt_p, char **salt_malloc_p, if ((strlen(passwd) > pw_maxlen)) { if (!quiet) - BIO_printf(bio_err, "Warning: truncating password to %u characters\n", pw_maxlen); + /* XXX: really we should know how to print a size_t, not cast it */ + BIO_printf(bio_err, "Warning: truncating password to %u characters\n", (unsigned)pw_maxlen); passwd[pw_maxlen] = 0; } assert(strlen(passwd) <= pw_maxlen);