[dovecot-cvs] dovecot/src/lib-ntlm ntlm-message.c,1.9.2.1,1.9.2.2

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


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

Modified Files:
      Tag: branch_1_0
	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.9.2.1
retrieving revision 1.9.2.2
diff -u -d -r1.9.2.1 -r1.9.2.2
--- ntlm-message.c	16 Jun 2006 10:38:28 -0000	1.9.2.1
+++ ntlm-message.c	3 Nov 2006 13:21:39 -0000	1.9.2.2
@@ -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