diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2006-07-21T12·28+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2006-07-21T12·28+0000 |
commit | dcded7da4704ae66ebbb4343597868a7eb992aa7 (patch) | |
tree | 69e539126bac7ef68bc99ef8c7a046da76eb5efb /scripts/find-runtime-roots.pl.in | |
parent | a4273156c43db7325d27cb21e460b57a998ee882 (diff) |
* Don't try to do DNS lookups.
Diffstat (limited to 'scripts/find-runtime-roots.pl.in')
-rw-r--r-- | scripts/find-runtime-roots.pl.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/find-runtime-roots.pl.in b/scripts/find-runtime-roots.pl.in index 3e55ee4458d3..91520fe4ea16 100644 --- a/scripts/find-runtime-roots.pl.in +++ b/scripts/find-runtime-roots.pl.in @@ -43,7 +43,7 @@ sub readProc { sub lsof { - return unless open LSOF, "lsof -b -w -F n |"; + return unless open LSOF, "lsof -n -w -F n |"; while (<LSOF>) { next unless /^n (\/ .*)$/x; |