Module Name:    src
Committed By:   lukem
Date:           Tue Apr 14 21:58:36 UTC 2009

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

Log Message:
Redo previous -- cast to (unsigned char)


To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 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.10 src/crypto/dist/openssl/apps/ca.c:1.11
--- src/crypto/dist/openssl/apps/ca.c:1.10	Tue Apr 14 10:03:55 2009
+++ src/crypto/dist/openssl/apps/ca.c	Tue Apr 14 21:58:36 2009
@@ -2547,7 +2547,7 @@
 			
 	/* Make it Upper Case */
 	for (i=0; row[DB_serial][i] != '\0'; i++)
-		row[DB_serial][i] = toupper((int)row[DB_serial][i]);
+		row[DB_serial][i] = toupper((unsigned char)row[DB_serial][i]);
 	
 
 	ok=1;

Reply via email to