summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsemarie <semarie@openbsd.org>2016-04-13 06:33:36 +0000
committersemarie <semarie@openbsd.org>2016-04-13 06:33:36 +0000
commitba15bcef6f18fd1e0a3b1ddcf2abe74943ea8144 (patch)
treed8a854bce3cb48998bb1ba57b1f86b96db24fefa
parentRemove extra parenthesis around comparison. (diff)
downloadwireguard-openbsd-ba15bcef6f18fd1e0a3b1ddcf2abe74943ea8144.tar.xz
wireguard-openbsd-ba15bcef6f18fd1e0a3b1ddcf2abe74943ea8144.zip
remove "abort" promise from debugging code in radiusd
it is the default now, and the promise name isn't valid anymore. ok yasuoka@
-rw-r--r--usr.sbin/radiusd/radiusd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/radiusd/radiusd.c b/usr.sbin/radiusd/radiusd.c
index 663a50c545f..67eac058905 100644
--- a/usr.sbin/radiusd/radiusd.c
+++ b/usr.sbin/radiusd/radiusd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: radiusd.c,v 1.16 2016/03/21 00:49:36 guenther Exp $ */
+/* $OpenBSD: radiusd.c,v 1.17 2016/04/13 06:33:36 semarie Exp $ */
/*
* Copyright (c) 2013 Internet Initiative Japan Inc.
@@ -175,7 +175,7 @@ main(int argc, char *argv[])
errx(EXIT_FAILURE, "start failed");
#ifdef RADIUSD_DEBUG
- if (pledge("stdio inet proc abort", NULL) == -1)
+ if (pledge("stdio inet proc", NULL) == -1)
err(EXIT_FAILURE, "pledge");
#else
if (pledge("stdio inet", NULL) == -1)