From 9c25b4dcb6f63c2febb37a9e8f736bf100928043 Mon Sep 17 00:00:00 2001 From: "psyc://loupsycedyglgamf.onion/~lynX" Date: Thu, 2 Feb 2017 09:21:55 +0000 Subject: [PATCH] find /bin/ip --- src/dns/gnunet-helper-dns.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/dns/gnunet-helper-dns.c b/src/dns/gnunet-helper-dns.c index 1c5744002..d083a9df2 100644 --- a/src/dns/gnunet-helper-dns.c +++ b/src/dns/gnunet-helper-dns.c @@ -794,6 +794,8 @@ main (int argc, char *const*argv) sbin_ip = "/sbin/ip"; else if (0 == access ("/usr/sbin/ip", X_OK)) sbin_ip = "/usr/sbin/ip"; + else if (0 == access ("/bin/ip", X_OK)) /* gentoo has it there */ + sbin_ip = "/bin/ip"; else { fprintf (stderr, -- 2.25.1