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/queue_backend.c | |
parent | 2b7e45a9f71e83195c6a0adf68237584f51e58a7 (diff) |
remove spaces after '!'
no binary change
ok millert
Diffstat (limited to 'usr.sbin/smtpd/queue_backend.c')
-rw-r--r-- | usr.sbin/smtpd/queue_backend.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.sbin/smtpd/queue_backend.c b/usr.sbin/smtpd/queue_backend.c index 8c536199ff9..f0a37903c3b 100644 --- a/usr.sbin/smtpd/queue_backend.c +++ b/usr.sbin/smtpd/queue_backend.c @@ -1,4 +1,4 @@ -/* $OpenBSD: queue_backend.c,v 1.60 2015/12/14 10:22:12 jung Exp $ */ +/* $OpenBSD: queue_backend.c,v 1.61 2015/12/28 22:08:30 jung Exp $ */ /* * Copyright (c) 2011 Gilles Chehade <gilles@poolp.org> @@ -225,7 +225,7 @@ queue_message_commit(uint32_t msgid) ofp = fopen(tmppath, "w+"); if (ifp == NULL || ofp == NULL) goto err; - if (! compress_file(ifp, ofp)) + if (!compress_file(ifp, ofp)) goto err; fclose(ifp); fclose(ofp); @@ -247,7 +247,7 @@ queue_message_commit(uint32_t msgid) ofp = fopen(tmppath, "w+"); if (ifp == NULL || ofp == NULL) goto err; - if (! crypto_encrypt_file(ifp, ofp)) + if (!crypto_encrypt_file(ifp, ofp)) goto err; fclose(ifp); fclose(ofp); @@ -333,7 +333,7 @@ queue_message_fd_r(uint32_t msgid) if ((ofp = fdopen(fdout, "w+")) == NULL) goto err; - if (! crypto_decrypt_file(ifp, ofp)) + if (!crypto_decrypt_file(ifp, ofp)) goto err; fclose(ifp); @@ -355,7 +355,7 @@ queue_message_fd_r(uint32_t msgid) if ((ofp = fdopen(fdout, "w+")) == NULL) goto err; - if (! uncompress_file(ifp, ofp)) + if (!uncompress_file(ifp, ofp)) goto err; fclose(ifp); |