getnameinfo() no longer needs pledge "route". this drops to
authorderaadt <deraadt@openbsd.org>
Fri, 23 Oct 2015 13:21:10 +0000 (13:21 +0000)
committerderaadt <deraadt@openbsd.org>
Fri, 23 Oct 2015 13:21:10 +0000 (13:21 +0000)
pledge "stdio rpath".

usr.bin/fstat/fstat.c

index bfc4d0f..b625840 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: fstat.c,v 1.82 2015/10/12 14:09:32 deraadt Exp $      */
+/*     $OpenBSD: fstat.c,v 1.83 2015/10/23 13:21:10 deraadt Exp $      */
 
 /*
  * Copyright (c) 2009 Todd C. Miller <Todd.Miller@courtesan.com>
@@ -284,7 +284,7 @@ main(int argc, char *argv[])
                                err(1, "pledge");
                }
        } else {
-               if (pledge("stdio rpath route", NULL) == -1)
+               if (pledge("stdio rpath", NULL) == -1)
                        err(1, "pledge");
        }