diff options
author | Gregory Neil Shapiro <gshapiro@FreeBSD.org> | 2001-01-21 22:17:06 +0000 |
---|---|---|
committer | Gregory Neil Shapiro <gshapiro@FreeBSD.org> | 2001-01-21 22:17:06 +0000 |
commit | 193538b7dabbb9c165660ca97d2704eea0642fa1 (patch) | |
tree | 4f725bdbff499cf7343d2eaeec15f8a0f0926140 /contrib/sendmail/libmilter/engine.c | |
parent | 42e5d1658931f6141a962c4b87919e7a1613ec8e (diff) | |
download | src-test2-193538b7dabbb9c165660ca97d2704eea0642fa1.tar.gz src-test2-193538b7dabbb9c165660ca97d2704eea0642fa1.zip |
Notes
Diffstat (limited to 'contrib/sendmail/libmilter/engine.c')
-rw-r--r-- | contrib/sendmail/libmilter/engine.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/sendmail/libmilter/engine.c b/contrib/sendmail/libmilter/engine.c index c2a3dc3d65a1..554631ce9351 100644 --- a/contrib/sendmail/libmilter/engine.c +++ b/contrib/sendmail/libmilter/engine.c @@ -9,7 +9,7 @@ */ #ifndef lint -static char id[] = "@(#)$Id: engine.c,v 8.67.4.14 2000/08/14 08:27:30 gshapiro Exp $"; +static char id[] = "@(#)$Id: engine.c,v 8.67.4.15 2000/12/29 19:43:10 gshapiro Exp $"; #endif /* ! lint */ #if _FFR_MILTER @@ -381,7 +381,7 @@ sendreply(r, sd, timeout_ptr, ctx) { int ret = MI_SUCCESS; - switch(r) + switch (r) { case SMFIS_CONTINUE: ret = mi_wr_cmd(sd, timeout_ptr, SMFIR_CONTINUE, NULL, 0); @@ -807,7 +807,7 @@ st_macros(g) return _SMFIS_FAIL; if ((argv = dec_argv(g->a_buf + 1, g->a_len - 1)) == NULL) return _SMFIS_FAIL; - switch(g->a_buf[0]) + switch (g->a_buf[0]) { case SMFIC_CONNECT: i = CI_CONN; |