summaryrefslogtreecommitdiffstats
path: root/usr.sbin/smtpd/queue_backend.c
diff options
context:
space:
mode:
authorjung <jung@openbsd.org>2015-12-28 22:08:30 +0000
committerjung <jung@openbsd.org>2015-12-28 22:08:30 +0000
commite459d0cee5aa65207939486735f76078c6642e60 (patch)
tree08e9e3ec9fa034e9e7de8612fb964a50a683147d /usr.sbin/smtpd/queue_backend.c
parentRemove NULL-checks before free() and a few related dead assignments. (diff)
downloadwireguard-openbsd-e459d0cee5aa65207939486735f76078c6642e60.tar.xz
wireguard-openbsd-e459d0cee5aa65207939486735f76078c6642e60.zip
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);