diff options
author | Joerg Jung <jung@cvs.openbsd.org> | 2015-12-28 22:08:31 +0000 |
---|---|---|
committer | Joerg Jung <jung@cvs.openbsd.org> | 2015-12-28 22:08:31 +0000 |
commit | 3e921c7dd8d131d23866c66897ecbc8d31ed8cfd (patch) | |
tree | 2eac5faa44ffaf675263cdaf9edc9253e1966c40 /usr.sbin/smtpd/smtp_session.c | |
parent | 2b7e45a9f71e83195c6a0adf68237584f51e58a7 (diff) |
remove spaces after '!'
no binary change
ok millert
Diffstat (limited to 'usr.sbin/smtpd/smtp_session.c')
-rw-r--r-- | usr.sbin/smtpd/smtp_session.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/smtpd/smtp_session.c b/usr.sbin/smtpd/smtp_session.c index 86aeffe48a5..9152e1ddbb1 100644 --- a/usr.sbin/smtpd/smtp_session.c +++ b/usr.sbin/smtpd/smtp_session.c @@ -1,4 +1,4 @@ -/* $OpenBSD: smtp_session.c,v 1.263 2015/12/14 10:22:12 jung Exp $ */ +/* $OpenBSD: smtp_session.c,v 1.264 2015/12/28 22:08:30 jung Exp $ */ /* * Copyright (c) 2008 Gilles Chehade <gilles@poolp.org> @@ -1186,7 +1186,7 @@ smtp_filter_fd(uint64_t id, int fd) io_init(&s->oev, fd, s, smtp_data_io, &s->obuf); iobuf_fqueue(&s->obuf, "Received: "); - if (! (s->listener->flags & F_MASK_SOURCE)) { + if (!(s->listener->flags & F_MASK_SOURCE)) { iobuf_fqueue(&s->obuf, "from %s (%s [%s])", s->evp.helo, s->hostname, @@ -1330,7 +1330,7 @@ smtp_io(struct io *io, int evt) s->skiphdr = 0; /* BCC should be stripped from headers */ - if (! s->hdrdone) { + if (!s->hdrdone) { if (strncasecmp("bcc:", line, 4) == 0) { s->skiphdr = 1; goto nextline; |