diff -ruN dovecot-1.1.11/src/master/main.c dovecot-1.1.11-KAM/src/master/main.c --- dovecot-1.1.11/src/master/main.c Mon Feb 2 12:06:50 2009 +++ dovecot-1.1.11-KAM/src/master/main.c Thu Feb 26 09:03:38 2009 @@ -361,105 +361,105 @@ static void print_build_options(void) { - printf("Build options:" + printf("Build options:"); #ifdef IOLOOP_EPOLL - " ioloop=epoll" + printf(" ioloop=epoll"); #endif #ifdef IOLOOP_KQUEUE - " ioloop=kqueue" + printf(" ioloop=kqueue"); #endif #ifdef IOLOOP_POLL - " ioloop=poll" + printf(" ioloop=poll"); #endif #ifdef IOLOOP_SELECT - " ioloop=select" + printf(" ioloop=select"); #endif #ifdef IOLOOP_NOTIFY_DNOTIFY - " notify=dnotify" + printf(" notify=dnotify"); #endif #ifdef IOLOOP_NOTIFY_INOTIFY - " notify=inotify" + printf(" notify=inotify"); #endif #ifdef IOLOOP_NOTIFY_KQUEUE - " notify=kqueue" + printf(" notify=kqueue"); #endif #ifdef HAVE_IPV6 - " ipv6" + printf(" ipv6"); #endif #ifdef HAVE_GNUTLS - " gnutls" + printf(" gnutls"); #endif #ifdef HAVE_OPENSSL - " openssl" + printf(" openssl"); #endif - "\nMail storages: "MAIL_STORAGES"\n" - "SQL drivers:" + printf("\nMail storages: "MAIL_STORAGES"\n"); + printf("SQL drivers:"); #ifdef BUILD_MYSQL - " mysql" + printf(" mysql"); #endif #ifdef BUILD_PGSQL - " postgresql" + printf(" postgresql"); #endif #ifdef BUILD_SQLITE - " sqlite" + printf(" sqlite"); #endif - "\nPassdb:" + printf("\nPassdb:"); #ifdef PASSDB_BSDAUTH - " bsdauth" + printf(" bsdauth"); #endif #ifdef PASSDB_CHECKPASSWORD - " checkpassword" + printf(" checkpassword"); #endif #ifdef PASSDB_LDAP - " ldap" + printf(" ldap"); #endif #ifdef PASSDB_PAM - " pam" + printf(" pam"); #endif #ifdef PASSDB_PASSWD - " passwd" + printf(" passwd"); #endif #ifdef PASSDB_PASSWD_FILE - " passwd-file" + printf(" passwd-file"); #endif #ifdef PASSDB_SHADOW - " shadow" + printf(" shadow"); #endif #ifdef PASSDB_SIA - " sia" + printf(" sia"); #endif #ifdef PASSDB_SQL - " sql" + printf(" sql"); #endif #ifdef PASSDB_VPOPMAIL - " vpopmail" + printf(" vpopmail"); #endif - "\nUserdb:" + printf("\nUserdb:"); #ifdef USERDB_NSS - " nss" + printf(" nss"); #endif #ifdef USERDB_LDAP - " ldap" + printf(" ldap"); #endif #ifdef USERDB_PASSWD - " passwd" + printf(" passwd"); #endif #ifdef USERDB_PASSWD_FILE - " passwd-file" + printf(" passwd-file"); #endif #ifdef USERDB_PREFETCH - " prefetch" + printf(" prefetch"); #endif #ifdef USERDB_SQL - " sql" + printf(" sql"); #endif #ifdef USERDB_STATIC - " static" + printf(" static"); #endif #ifdef USERDB_VPOPMAIL - " vpopmail" + printf(" vpopmail"); #endif - "\n"); + printf("\n"); } int main(int argc, char *argv[])