[dovecot-cvs] dovecot/src/lib-ntlm ntlm-message.c,1.10,1.11

tss at dovecot.org tss at dovecot.org
Fri Nov 3 13:21:44 UTC 2006


Update of /var/lib/cvs/dovecot/src/lib-ntlm
In directory talvi:/tmp/cvs-serv21256

Modified Files:
	ntlm-message.c 
Log Message:
Use i_toupper()



Index: ntlm-message.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/lib-ntlm/ntlm-message.c,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- ntlm-message.c	16 Jun 2006 10:38:58 -0000	1.10
+++ ntlm-message.c	3 Nov 2006 13:21:42 -0000	1.11
@@ -44,7 +44,7 @@
 	unsigned int length = 0;
 
 	for ( ; *str; str++) {
-		buffer_append_c(buf, ucase ? toupper(*str) : *str);
+		buffer_append_c(buf, ucase ? i_toupper(*str) : *str);
 		if (unicode) {
 			buffer_append_c(buf, 0);
 			length++; 



More information about the dovecot-cvs mailing list