diff options
-rw-r--r-- | driver.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -88,6 +88,11 @@ static void timeout_handler (int signal) longjmp(restart, 1); } +#define XMIT_ACCEPT 1 +#define XMIT_REJECT 2 +#define XMIT_ANTISPAM 3 +static int accept_count, reject_count; + #ifdef HAVE_RES_SEARCH #define MX_RETRIES 3 @@ -191,11 +196,6 @@ static int is_host_alias(const char *name, struct query *ctl) return(TRUE); } -#define XMIT_ACCEPT 1 -#define XMIT_REJECT 2 -#define XMIT_ANTISPAM 3 -static int accept_count, reject_count; - static void map_name(name, ctl, xmit_names) /* add given name to xmit_names if it matches declared localnames */ const char *name; /* name to map */ |