From 08320392847a6177674b474ab3ceefc6ddd74ce5 Mon Sep 17 00:00:00 2001 From: "Andrey A. Chernov" Date: Mon, 22 Dec 1997 19:11:28 +0000 Subject: [PATCH] Fix sysctl path /usr/sbin->/sbin --- usr.bin/whereis/whereis.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr.bin/whereis/whereis.pl b/usr.bin/whereis/whereis.pl index 12b399763ad..3502d8ce626 100644 --- a/usr.bin/whereis/whereis.pl +++ b/usr.bin/whereis/whereis.pl @@ -28,7 +28,7 @@ # # Rewritten from scratch for FreeBSD after the 4.3BSD manual page. # -# $Id$ +# $Id: whereis.pl,v 1.4 1997/02/22 19:57:48 peter Exp $ # sub usage @@ -96,7 +96,7 @@ if (!defined(@binaries)) { # # first, use default path, then append /usr/libexec and the user's path # - local($cs_path) = `/usr/sbin/sysctl -n user.cs_path`; + local($cs_path) = `/sbin/sysctl -n user.cs_path`; local(@list, %path); chop($cs_path);