On Tue, Apr 14, 2009 at 10:03:55AM +0000, Luke Mewburn wrote: > 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.
toupper() gets u_char arguments, not int. This cast is simply wrong. Joerg