[dovecot-cvs] dovecot/src/lib-ntlm ntlm-encrypt.c, 1.2, 1.3 ntlm-message.c, 1.1, 1.2

cras at dovecot.org cras at dovecot.org
Fri Jul 30 06:01:26 EEST 2004


Update of /home/cvs/dovecot/src/lib-ntlm
In directory talvi:/tmp/cvs-serv26038

Modified Files:
	ntlm-encrypt.c ntlm-message.c 
Log Message:
Moved system header includes after local headers to fix some compile problems.



Index: ntlm-encrypt.c
===================================================================
RCS file: /home/cvs/dovecot/src/lib-ntlm/ntlm-encrypt.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- ntlm-encrypt.c	30 Jul 2004 01:43:21 -0000	1.2
+++ ntlm-encrypt.c	30 Jul 2004 03:01:24 -0000	1.3
@@ -9,8 +9,6 @@
  * (at your option) any later version.
  */
 
-#include <ctype.h>
-
 #include "lib.h"
 #include "buffer.h"
 #include "compat.h"
@@ -20,6 +18,8 @@
 #include "ntlm.h"
 #include "ntlm-des.h"
 
+#include <ctype.h>
+
 static unsigned char *
 t_unicode_str(const char *src, int ucase, size_t *size)
 {

Index: ntlm-message.c
===================================================================
RCS file: /home/cvs/dovecot/src/lib-ntlm/ntlm-message.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- ntlm-message.c	28 Jul 2004 15:39:30 -0000	1.1
+++ ntlm-message.c	30 Jul 2004 03:01:24 -0000	1.2
@@ -9,9 +9,6 @@
  * (at your option) any later version.
  */
 
-#include <stdarg.h>
-#include <ctype.h>
-
 #include "lib.h"
 #include "str.h"
 #include "buffer.h"
@@ -21,6 +18,9 @@
 #include "ntlm.h"
 #include "ntlm-message.h"
 
+#include <stdarg.h>
+#include <ctype.h>
+
 const char * __ntlmssp_t_str(const void *message, struct ntlmssp_buffer *buffer)
 {
 	unsigned int len = read_le16(&buffer->length) / sizeof(ucs2le_t);



More information about the dovecot-cvs mailing list