Fix to EXPN not working under TLS. Fixes bug #744
[exim.git] / src / src / mytypes.h
index 51a4ad49448aac8d938609937beae9df8f796087..d9912c4fffd9c3b684e3e67556c71d49fb620966 100644 (file)
@@ -1,4 +1,4 @@
-/* $Cambridge: exim/src/src/mytypes.h,v 1.4 2007/01/08 10:50:18 ph10 Exp $ */
+/* $Cambridge: exim/src/src/mytypes.h,v 1.5 2008/09/29 11:41:07 nm4 Exp $ */
 
 /*************************************************
 *     Exim - an Internet mail transport agent    *
@@ -25,9 +25,9 @@ local_scan.h includes it and exim.h includes them both (to get this earlier). */
 the arguments of printf-like functions. This is done by a macro. */
 
 #ifdef __GNUC__
-#define PRINTF_FUNCTION  __attribute__((format(printf,1,2)))
+#define PRINTF_FUNCTION(A,B)  __attribute__((format(printf,A,B)))
 #else
-#define PRINTF_FUNCTION
+#define PRINTF_FUNCTION(A,B)
 #endif