diff options
author | ume <ume@FreeBSD.org> | 2003-11-14 16:57:04 +0000 |
---|---|---|
committer | ume <ume@FreeBSD.org> | 2003-11-14 16:57:04 +0000 |
commit | 5b31c306342f5e7517b2c907e4c67c50bb00a101 (patch) | |
tree | afce1d48df4b0b756b0f0941067063ef2ec32783 | |
parent | 0e54f1820da54570841e5edd46ea4ff9c4201d64 (diff) | |
download | FreeBSD-src-5b31c306342f5e7517b2c907e4c67c50bb00a101.zip FreeBSD-src-5b31c306342f5e7517b2c907e4c67c50bb00a101.tar.gz |
our netstat is installed in /usr/bin.
-rwxr-xr-x | usr.sbin/route6d/misc/chkrt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/route6d/misc/chkrt b/usr.sbin/route6d/misc/chkrt index f57a376..6ae01f3 100755 --- a/usr.sbin/route6d/misc/chkrt +++ b/usr.sbin/route6d/misc/chkrt @@ -13,7 +13,7 @@ chop; close(FD); system("kill -INT $_"); -open(NS, "/usr/local/v6/bin/netstat -r -n|") || die "Can not open netstat"; +open(NS, "/usr/bin/netstat -r -n|") || die "Can not open netstat"; while (<NS>) { chop; next unless (/^3f/ || /^5f/); |