summaryrefslogtreecommitdiff
path: root/usr.sbin/smtpd/queue_backend.c
diff options
context:
space:
mode:
authorJoerg Jung <jung@cvs.openbsd.org>2015-12-28 22:08:31 +0000
committerJoerg Jung <jung@cvs.openbsd.org>2015-12-28 22:08:31 +0000
commit3e921c7dd8d131d23866c66897ecbc8d31ed8cfd (patch)
tree2eac5faa44ffaf675263cdaf9edc9253e1966c40 /usr.sbin/smtpd/queue_backend.c
parent2b7e45a9f71e83195c6a0adf68237584f51e58a7 (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.c10
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);