Files
bpfire/src/patches/cyrus-imapd-2.2.12-gcc4.patch
ms b40388bb90 Geändert:
* Cyrus-IMAP downgrade auf 2.2.12 mit einer Menge Patches,
    doch die Probleme bleiben bestehen...
  * SSH-Schönheitsfehler im Webinterface behoben.


git-svn-id: http://svn.ipfire.org/svn/ipfire/trunk@181 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8
2006-06-22 11:54:33 +00:00

49 lines
979 B
Diff

--- tools/config2header 2005/04/13 08:56:16 1.1
+++ tools/config2header 2005/04/13 08:57:48
@@ -214,7 +214,6 @@
print HFILE <<EOF
IMAPOPT_LAST
};
-extern struct imapopt_s imapopts[];
enum enum_value {
IMAP_ENUM_ZERO = 0,
@@ -260,6 +259,9 @@
print HFILE <<EOF
};
+
+extern struct imapopt_s imapopts[];
+
#endif /* INCLUDED_IMAPOPTIONS_H */
EOF
;
--- imap/fud.c 2005/04/13 09:19:05 1.1
+++ imap/fud.c 2005/04/13 09:20:02
@@ -202,6 +202,7 @@
r = begin_handling();
shut_down(r);
+ return 0;
}
static void cyrus_timeout(int signo __attribute__((unused)))
--- imap/smmapd.c 2005/04/13 09:19:12 1.1
+++ imap/smmapd.c 2005/04/13 09:19:50
@@ -199,6 +199,7 @@
r = begin_handling();
shut_down(r);
+ return 0;
}
int verify_user(const char *key, long quotacheck,
--- notifyd/notifyd.c 2005/04/13 09:19:23 1.1
+++ notifyd/notifyd.c 2005/04/13 09:19:39
@@ -266,4 +266,5 @@
r = do_notify();
shut_down(r);
+ return 0;
}