OpenSSL CVS Repository
http://cvs.openssl.org/
____________________________________________________________
________________
Server: cvs.openssl.org Name: Dr.
Stephen Henson
Root: /v/openssl/cvs Email: steve openssl.org
Module: openssl Date:
07-Sep-2007 15:34:47
Branch: HEAD Handle:
2007090714344600
Modified files:
openssl/apps s_server.c
Log:
Fix warning: print format option not compatible with
size_t.
Summary:
Revision Changes Path
1.122 +1 -1 openssl/apps/s_server.c
____________________________________________________________
________________
patch -p0 <<' .'
Index: openssl/apps/s_server.c
============================================================
================
$ cvs diff -u -r1.121 -r1.122 s_server.c
--- openssl/apps/s_server.c 23 Aug 2007 11:34:47
-0000 1.121
+++ openssl/apps/s_server.c 7 Sep 2007 13:34:46
-0000 1.122
 -317,7 +317,7 
}
if (s_debug)
BIO_printf(bio_s_out,"identity_len=%d
identity=%sn",
- identity ? strlen(identity) : 0, identity);
+ identity ? (int)strlen(identity) : 0, identity);
/* here we could lookup the given identity e.g. from a
database */
if (strcmp(identity, psk_identity) != 0)
 .
____________________________________________________________
__________
OpenSSL Project http://www.openssl.org
CVS Repository Commit List
openssl-cvs openssl.org
Automated List Manager
majordomo openssl.org
|