pkgsrc/mail/yatsvrs/patches/patch-bd

29 lines
1.2 KiB
Text

$NetBSD: patch-bd,v 1.1.1.1 2001/11/15 23:21:31 taca Exp $
--- yatd/prototype.h.orig Mon Jul 2 12:51:50 2001
+++ yatd/prototype.h
@@ -22,12 +22,18 @@
#endif
char * strlwr __P((char *));
-void LogDEBUG __P((CONST char * pFmt, ...));
-void LogNOTICE __P((CONST char * pFmt, ...));
-int Msg2Cli __P((int stat, CONST char * pFmt, ...));
-void Str2Cli __P((CONST char * pFmt, ...));
-void ErrSetData __P((int codeErr, int Flags, CONST char * pFmt, ...));
-void WARNING __P((int codeErr, int Flags, CONST char * pFmt, ...));
+void LogDEBUG __P((CONST char * pFmt, ...))
+ __attribute__((__format__(__printf__, 1, 2)));
+void LogNOTICE __P((CONST char * pFmt, ...))
+ __attribute__((__format__(__printf__, 1, 2)));
+int Msg2Cli __P((int, CONST char * pFmt, ...))
+ __attribute__((__format__(__printf__, 2, 3)));
+void Str2Cli __P((CONST char * pFmt, ...))
+ __attribute__((__format__(__printf__, 1, 2)));
+void ErrSetData __P((int codeErr, int Flags, CONST char * pFmt, ...))
+ __attribute__((__format__(__printf__, 3, 4)));
+void WARNING __P((int codeErr, int Flags, CONST char * pFmt, ...))
+ __attribute__((__format__(__printf__, 3, 4)));
/* etc.c */
char * CatchLine __P((char *, int, FILE *));