summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordaniel <daniel@openbsd.org>2014-05-28 10:34:16 +0000
committerdaniel <daniel@openbsd.org>2014-05-28 10:34:16 +0000
commit1f4ada3fcf172c25177fc248e2f28c97a18ec343 (patch)
tree2d2e77aa9cb1200871c7c2efa4ff00ea1f48b7be
parenta void function should not be returning anything. (diff)
downloadwireguard-openbsd-1f4ada3fcf172c25177fc248e2f28c97a18ec343.tar.xz
wireguard-openbsd-1f4ada3fcf172c25177fc248e2f28c97a18ec343.zip
remove an errant semicolon.
ok gilles@
-rw-r--r--usr.sbin/smtpd/bounce.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/smtpd/bounce.c b/usr.sbin/smtpd/bounce.c
index 5850f619f9f..10cf5e678f8 100644
--- a/usr.sbin/smtpd/bounce.c
+++ b/usr.sbin/smtpd/bounce.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: bounce.c,v 1.64 2014/04/19 17:27:40 gilles Exp $ */
+/* $OpenBSD: bounce.c,v 1.65 2014/05/28 10:34:16 daniel Exp $ */
/*
* Copyright (c) 2009 Gilles Chehade <gilles@poolp.org>
@@ -311,7 +311,7 @@ bounce_duration(long long int d)
(void)snprintf(buf, sizeof buf, "%lld day%s", d, (d == 1)?"":"s");
}
return (buf);
-};
+}
#define NOTICE_INTRO \
" Hi!\n\n" \