--- lmtp2nntp.h 2001/09/11 06:37:53 1.4
+++ lmtp2nntp.h 2001/09/11 13:41:22 1.5
@@ -35,15 +35,15 @@
#endif
#define log0(ctx,level,msg) \
- l2_stream_log((ctx)->l2, L2_LEVEL_##level, "%P: " msg)
+ l2_stream_log((ctx)->l2, L2_LEVEL_##level, "%P" msg)
#define log1(ctx,level,msg,a1) \
- l2_stream_log((ctx)->l2, L2_LEVEL_##level, "%P: " msg, a1)
+ l2_stream_log((ctx)->l2, L2_LEVEL_##level, "%P" msg, a1)
#define log2(ctx,level,msg,a1,a2) \
- l2_stream_log((ctx)->l2, L2_LEVEL_##level, "%P: " msg, a1, a2)
+ l2_stream_log((ctx)->l2, L2_LEVEL_##level, "%P" msg, a1, a2)
#define log3(ctx,level,msg,a1,a2,a3) \
- l2_stream_log((ctx)->l2, L2_LEVEL_##level, "%P: " msg, a1, a2, a3)
+ l2_stream_log((ctx)->l2, L2_LEVEL_##level, "%P" msg, a1, a2, a3)
#define log4(ctx,level,msg,a1,a2,a3,a4) \
- l2_stream_log((ctx)->l2, L2_LEVEL_##level, "%P: " msg, a1, a2, a3, a4)
+ l2_stream_log((ctx)->l2, L2_LEVEL_##level, "%P" msg, a1, a2, a3, a4)
#define STMT(stuff) do { stuff } while (0)
#define CU(returncode) STMT( rc = returncode; goto CUS; )
|