[dovecot-cvs] dovecot/src/auth db-ldap.c, 1.29, 1.30 db-passwd-file.c, 1.11, 1.12 db-sql.c, 1.2, 1.3 passdb-bsdauth.c, 1.9, 1.10 passdb-checkpassword.c, 1.8, 1.9 passdb-ldap.c, 1.31, 1.32 passdb-pam.c, 1.24, 1.25 passdb-passwd-file.c, 1.17, 1.18 passdb-passwd.c, 1.12, 1.13 passdb-shadow.c, 1.13, 1.14 passdb-sql.c, 1.19, 1.20 passdb-vpopmail.c, 1.20, 1.21 userdb-ldap.c, 1.31, 1.32 userdb-passdb.c, 1.5, 1.6 userdb-passwd-file.c, 1.13, 1.14 userdb-passwd.c, 1.15, 1.16 userdb-sql.c, 1.9, 1.10 userdb-static.c, 1.12, 1.13 userdb-vpopmail.c, 1.15, 1.16

cras at dovecot.org cras at dovecot.org
Tue Jul 12 15:58:50 EEST 2005


Update of /var/lib/cvs/dovecot/src/auth
In directory talvi:/tmp/cvs-serv27500

Modified Files:
	db-ldap.c db-passwd-file.c db-sql.c passdb-bsdauth.c 
	passdb-checkpassword.c passdb-ldap.c passdb-pam.c 
	passdb-passwd-file.c passdb-passwd.c passdb-shadow.c 
	passdb-sql.c passdb-vpopmail.c userdb-ldap.c userdb-passdb.c 
	userdb-passwd-file.c userdb-passwd.c userdb-sql.c 
	userdb-static.c userdb-vpopmail.c 
Log Message:
Removed direct config.h including. I'm not sure why it was done before,
probably to reduce compile times a few milliseconds. Ugly anyway..



Index: db-ldap.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/auth/db-ldap.c,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -d -r1.29 -r1.30
--- db-ldap.c	17 Apr 2005 16:52:00 -0000	1.29
+++ db-ldap.c	12 Jul 2005 12:58:47 -0000	1.30
@@ -1,11 +1,9 @@
 /* Copyright (C) 2003 Timo Sirainen */
 
-#include "config.h"
-#undef HAVE_CONFIG_H
+#include "common.h"
 
 #if defined(PASSDB_LDAP) || defined(USERDB_LDAP)
 
-#include "common.h"
 #include "network.h"
 #include "ioloop.h"
 #include "hash.h"

Index: db-passwd-file.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/auth/db-passwd-file.c,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- db-passwd-file.c	8 Jan 2005 16:56:04 -0000	1.11
+++ db-passwd-file.c	12 Jul 2005 12:58:47 -0000	1.12
@@ -1,11 +1,9 @@
 /* Copyright (C) 2002-2003 Timo Sirainen */
 
-#include "config.h"
-#undef HAVE_CONFIG_H
+#include "common.h"
 
 #if defined (USERDB_PASSWD_FILE) || defined(PASSDB_PASSWD_FILE)
 
-#include "common.h"
 #include "userdb.h"
 #include "db-passwd-file.h"
 

Index: db-sql.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/auth/db-sql.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- db-sql.c	9 Jun 2005 18:44:46 -0000	1.2
+++ db-sql.c	12 Jul 2005 12:58:47 -0000	1.3
@@ -1,10 +1,9 @@
 /* Copyright (C) 2003-2004 Timo Sirainen */
 
-#include "config.h"
-#undef HAVE_CONFIG_H
+#include "common.h"
 
 #if defined(PASSDB_SQL) || defined(USERDB_SQL)
-#include "common.h"
+
 #include "settings.h"
 #include "db-sql.h"
 

Index: passdb-bsdauth.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/auth/passdb-bsdauth.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- passdb-bsdauth.c	2 Apr 2005 22:00:49 -0000	1.9
+++ passdb-bsdauth.c	12 Jul 2005 12:58:47 -0000	1.10
@@ -1,11 +1,9 @@
 /* Copyright (C) 2002-2003 Timo Sirainen */
 
-#include "config.h"
-#undef HAVE_CONFIG_H
+#include "common.h"
 
 #ifdef PASSDB_BSDAUTH
 
-#include "common.h"
 #include "safe-memset.h"
 #include "passdb.h"
 #include "mycrypt.h"

Index: passdb-checkpassword.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/auth/passdb-checkpassword.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- passdb-checkpassword.c	28 Feb 2005 22:19:21 -0000	1.8
+++ passdb-checkpassword.c	12 Jul 2005 12:58:47 -0000	1.9
@@ -1,9 +1,9 @@
-#include "config.h"
-#undef HAVE_CONFIG_H
+/* Copyright (C) 2004-2005 Timo Sirainen */
+
+#include "common.h"
 
 #ifdef PASSDB_CHECKPASSWORD
 
-#include "common.h"
 #include "buffer.h"
 #include "str.h"
 #include "ioloop.h"

Index: passdb-ldap.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/auth/passdb-ldap.c,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -d -r1.31 -r1.32
--- passdb-ldap.c	23 Apr 2005 15:52:16 -0000	1.31
+++ passdb-ldap.c	12 Jul 2005 12:58:47 -0000	1.32
@@ -1,11 +1,9 @@
 /* Copyright (C) 2003 Timo Sirainen */
 
-#include "config.h"
-#undef HAVE_CONFIG_H
+#include "common.h"
 
 #ifdef PASSDB_LDAP
 
-#include "common.h"
 #include "hash.h"
 #include "str.h"
 #include "var-expand.h"

Index: passdb-pam.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/auth/passdb-pam.c,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -d -r1.24 -r1.25
--- passdb-pam.c	14 Jun 2005 10:28:37 -0000	1.24
+++ passdb-pam.c	12 Jul 2005 12:58:47 -0000	1.25
@@ -7,12 +7,10 @@
    modified versions are marked as such.  There's absolutely no warranty.
 */
 
-#include "config.h"
-#undef HAVE_CONFIG_H
+#include "common.h"
 
 #ifdef PASSDB_PAM
 
-#include "common.h"
 #include "buffer.h"
 #include "ioloop.h"
 #include "network.h"

Index: passdb-passwd-file.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/auth/passdb-passwd-file.c,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- passdb-passwd-file.c	2 Apr 2005 22:00:49 -0000	1.17
+++ passdb-passwd-file.c	12 Jul 2005 12:58:47 -0000	1.18
@@ -1,11 +1,9 @@
 /* Copyright (C) 2002-2003 Timo Sirainen */
 
-#include "config.h"
-#undef HAVE_CONFIG_H
+#include "common.h"
 
 #ifdef PASSDB_PASSWD_FILE
 
-#include "common.h"
 #include "passdb.h"
 #include "password-scheme.h"
 #include "db-passwd-file.h"

Index: passdb-passwd.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/auth/passdb-passwd.c,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- passdb-passwd.c	2 Apr 2005 22:00:49 -0000	1.12
+++ passdb-passwd.c	12 Jul 2005 12:58:47 -0000	1.13
@@ -1,11 +1,9 @@
 /* Copyright (C) 2002-2003 Timo Sirainen */
 
-#include "config.h"
-#undef HAVE_CONFIG_H
+#include "common.h"
 
 #ifdef PASSDB_PASSWD
 
-#include "common.h"
 #include "safe-memset.h"
 #include "passdb.h"
 #include "mycrypt.h"

Index: passdb-shadow.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/auth/passdb-shadow.c,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- passdb-shadow.c	2 Apr 2005 22:00:49 -0000	1.13
+++ passdb-shadow.c	12 Jul 2005 12:58:47 -0000	1.14
@@ -1,11 +1,9 @@
 /* Copyright (C) 2002-2003 Timo Sirainen */
 
-#include "config.h"
-#undef HAVE_CONFIG_H
+#include "common.h"
 
 #ifdef PASSDB_SHADOW
 
-#include "common.h"
 #include "safe-memset.h"
 #include "passdb.h"
 #include "mycrypt.h"

Index: passdb-sql.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/auth/passdb-sql.c,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- passdb-sql.c	9 Jun 2005 18:44:46 -0000	1.19
+++ passdb-sql.c	12 Jul 2005 12:58:47 -0000	1.20
@@ -1,11 +1,9 @@
 /* Copyright (C) 2004 Timo Sirainen, Alex Howansky */
 
-#include "config.h"
-#undef HAVE_CONFIG_H
+#include "common.h"
 
 #ifdef PASSDB_SQL
 
-#include "common.h"
 #include "str.h"
 #include "strescape.h"
 #include "var-expand.h"

Index: passdb-vpopmail.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/auth/passdb-vpopmail.c,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -d -r1.20 -r1.21
--- passdb-vpopmail.c	10 May 2005 17:05:32 -0000	1.20
+++ passdb-vpopmail.c	12 Jul 2005 12:58:47 -0000	1.21
@@ -2,12 +2,10 @@
 
 /* Thanks to Courier-IMAP for showing how the vpopmail API should be used */
 
-#include "config.h"
-#undef HAVE_CONFIG_H
+#include "common.h"
 
 #ifdef PASSDB_VPOPMAIL
 
-#include "common.h"
 #include "safe-memset.h"
 #include "passdb.h"
 #include "password-scheme.h"

Index: userdb-ldap.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/auth/userdb-ldap.c,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -d -r1.31 -r1.32
--- userdb-ldap.c	17 Apr 2005 16:52:00 -0000	1.31
+++ userdb-ldap.c	12 Jul 2005 12:58:47 -0000	1.32
@@ -1,11 +1,9 @@
 /* Copyright (C) 2003 Timo Sirainen */
 
-#include "config.h"
-#undef HAVE_CONFIG_H
+#include "common.h"
 
 #ifdef USERDB_LDAP
 
-#include "common.h"
 #include "hash.h"
 #include "str.h"
 #include "var-expand.h"

Index: userdb-passdb.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/auth/userdb-passdb.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- userdb-passdb.c	28 Feb 2005 22:19:21 -0000	1.5
+++ userdb-passdb.c	12 Jul 2005 12:58:47 -0000	1.6
@@ -1,11 +1,9 @@
 /* Copyright (C) 2004 Timo Sirainen */
 
-#include "config.h"
-#undef HAVE_CONFIG_H
+#include "common.h"
 
 #ifdef USERDB_PASSDB
 
-#include "common.h"
 #include "str.h"
 #include "var-expand.h"
 #include "userdb.h"

Index: userdb-passwd-file.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/auth/userdb-passwd-file.c,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- userdb-passwd-file.c	28 Feb 2005 22:19:21 -0000	1.13
+++ userdb-passwd-file.c	12 Jul 2005 12:58:47 -0000	1.14
@@ -1,11 +1,9 @@
 /* Copyright (C) 2002-2003 Timo Sirainen */
 
-#include "config.h"
-#undef HAVE_CONFIG_H
+#include "common.h"
 
 #ifdef USERDB_PASSWD_FILE
 
-#include "common.h"
 #include "str.h"
 #include "userdb.h"
 #include "db-passwd-file.h"

Index: userdb-passwd.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/auth/userdb-passwd.c,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- userdb-passwd.c	16 Apr 2005 19:41:37 -0000	1.15
+++ userdb-passwd.c	12 Jul 2005 12:58:47 -0000	1.16
@@ -1,11 +1,9 @@
 /* Copyright (C) 2002-2003 Timo Sirainen */
 
-#include "config.h"
-#undef HAVE_CONFIG_H
+#include "common.h"
 
 #ifdef USERDB_PASSWD
 
-#include "common.h"
 #include "userdb.h"
 
 #include <pwd.h>

Index: userdb-sql.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/auth/userdb-sql.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- userdb-sql.c	9 Jun 2005 18:44:46 -0000	1.9
+++ userdb-sql.c	12 Jul 2005 12:58:47 -0000	1.10
@@ -1,11 +1,9 @@
 /* Copyright (C) 2004 Timo Sirainen, Alex Howansky */
 
-#include "config.h"
-#undef HAVE_CONFIG_H
+#include "common.h"
 
 #ifdef USERDB_SQL
 
-#include "common.h"
 #include "str.h"
 #include "strescape.h"
 #include "var-expand.h"

Index: userdb-static.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/auth/userdb-static.c,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- userdb-static.c	28 Feb 2005 22:19:21 -0000	1.12
+++ userdb-static.c	12 Jul 2005 12:58:47 -0000	1.13
@@ -1,11 +1,9 @@
 /* Copyright (C) 2003 Timo Sirainen */
 
-#include "config.h"
-#undef HAVE_CONFIG_H
+#include "common.h"
 
 #ifdef USERDB_STATIC
 
-#include "common.h"
 #include "str.h"
 #include "var-expand.h"
 #include "userdb.h"

Index: userdb-vpopmail.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/auth/userdb-vpopmail.c,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- userdb-vpopmail.c	28 Feb 2005 22:19:21 -0000	1.15
+++ userdb-vpopmail.c	12 Jul 2005 12:58:47 -0000	1.16
@@ -2,12 +2,10 @@
 
 /* Thanks to Courier-IMAP for showing how the vpopmail API should be used */
 
-#include "config.h"
-#undef HAVE_CONFIG_H
+#include "common.h"
 
 #if defined(PASSDB_VPOPMAIL) || defined(USERDB_VPOPMAIL)
 
-#include "common.h"
 #include "userdb.h"
 #include "userdb-vpopmail.h"
 



More information about the dovecot-cvs mailing list