can use pledge "stdio"; ok benno
authorderaadt <deraadt@openbsd.org>
Fri, 9 Oct 2015 23:33:54 +0000 (23:33 +0000)
committerderaadt <deraadt@openbsd.org>
Fri, 9 Oct 2015 23:33:54 +0000 (23:33 +0000)
usr.sbin/ospfctl/ospfctl.c

index 7a4408a..375615f 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: ospfctl.c,v 1.60 2015/09/27 17:31:50 stsp Exp $ */
+/*     $OpenBSD: ospfctl.c,v 1.61 2015/10/09 23:33:54 deraadt Exp $ */
 
 /*
  * Copyright (c) 2005 Claudio Jeker <claudio@openbsd.org>
@@ -124,6 +124,9 @@ main(int argc, char *argv[])
        if (connect(ctl_sock, (struct sockaddr *)&sun, sizeof(sun)) == -1)
                err(1, "connect: %s", sockname);
 
+       if (pledge("stdio", NULL) == -1)
+               err(1, "pledge");
+
        if ((ibuf = malloc(sizeof(struct imsgbuf))) == NULL)
                err(1, NULL);
        imsg_init(ibuf, ctl_sock);