diff options
author | Sebastien Marie <semarie@cvs.openbsd.org> | 2016-04-13 06:33:37 +0000 |
---|---|---|
committer | Sebastien Marie <semarie@cvs.openbsd.org> | 2016-04-13 06:33:37 +0000 |
commit | 17e91c3e08c62fd92af16ba5954ef55177e773b5 (patch) | |
tree | f9137f38b09da6dbd2c56563fa68a07197ea2558 | |
parent | bb404f94107e616509f807b27bda58fddf3be7cb (diff) |
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) |