Module Name:    src
Committed By:   lukem
Date:           Tue Apr 14 10:03:55 UTC 2009

Modified Files:
        src/crypto/dist/openssl/apps: ca.c

Log Message:
Call toupper() with an int argument.


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/crypto/dist/openssl/apps/ca.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/crypto/dist/openssl/apps/ca.c
diff -u src/crypto/dist/openssl/apps/ca.c:1.9 src/crypto/dist/openssl/apps/ca.c:1.10
--- src/crypto/dist/openssl/apps/ca.c:1.9	Fri May  9 21:49:39 2008
+++ src/crypto/dist/openssl/apps/ca.c	Tue Apr 14 10:03:55 2009
@@ -2547,7 +2547,7 @@
 			
 	/* Make it Upper Case */
 	for (i=0; row[DB_serial][i] != '\0'; i++)
-		row[DB_serial][i] = toupper(row[DB_serial][i]);
+		row[DB_serial][i] = toupper((int)row[DB_serial][i]);
 	
 
 	ok=1;

Reply via email to