diff options
author | 2016-04-13 06:33:36 +0000 | |
---|---|---|
committer | 2016-04-13 06:33:36 +0000 | |
commit | ba15bcef6f18fd1e0a3b1ddcf2abe74943ea8144 (patch) | |
tree | d8a854bce3cb48998bb1ba57b1f86b96db24fefa | |
parent | Remove extra parenthesis around comparison. (diff) | |
download | wireguard-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.c | 4 |
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) |