projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
50d5376
)
Nasty fix for another warning, but all I have the patience for right now.
author
Ben Laurie
<ben@openssl.org>
Tue, 28 Jun 2005 13:07:46 +0000
(13:07 +0000)
committer
Ben Laurie
<ben@openssl.org>
Tue, 28 Jun 2005 13:07:46 +0000
(13:07 +0000)
apps/passwd.c
patch
|
blob
|
history
diff --git
a/apps/passwd.c
b/apps/passwd.c
index 6965c6e0902a49f4985fa85a120f286e0a86889b..9ca25dd1da811fe44934e5e7cce3d4208973cadf 100644
(file)
--- 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);