From ac4c31ea471bec4dfbe72740d6a6008cd81e6afd Mon Sep 17 00:00:00 2001 From: chris mikkelson Date: Fri, 27 Mar 2009 16:54:44 -0500 Subject: [PATCH] Corrected SSM_RESPONDED macro to match SSM_MSG flag. --- smtpsink.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/smtpsink.h b/smtpsink.h index 05e6a0a..f556f25 100644 --- a/smtpsink.h +++ b/smtpsink.h @@ -47,7 +47,7 @@ int respond(struct conn *, const char *, ...); #define SSM_MSG (1 << 8) #define SSM_ACCEPTED(x) ((x & 0x0F) == SSM_ACCEPT) -#define SSM_RESPONDED(x) (x & 0x10) +#define SSM_RESPONDED(x) (x & 0x100) struct smtpsink_module { void (*module_init)(char *); -- 2.50.1