aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorclement <clement@FreeBSD.org>2004-04-07 21:55:49 +0800
committerclement <clement@FreeBSD.org>2004-04-07 21:55:49 +0800
commit86a68fcf5e44d71192838286d3f6ff8e41fa4350 (patch)
tree60ad3416f9660a4ed8e7051b52f577ab186d91a0 /net
parentab1586a024feb74872c649792139f579142330c3 (diff)
downloadfreebsd-ports-graphics-86a68fcf5e44d71192838286d3f6ff8e41fa4350.tar.gz
freebsd-ports-graphics-86a68fcf5e44d71192838286d3f6ff8e41fa4350.tar.zst
freebsd-ports-graphics-86a68fcf5e44d71192838286d3f6ff8e41fa4350.zip
- Fix ntop startup script
PR: 65276 Submitted by: Douglas K. Rand <rand@meridian-enviro.com>
Diffstat (limited to 'net')
-rw-r--r--net/ntop/files/ntop.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ntop/files/ntop.sh b/net/ntop/files/ntop.sh
index 8ed84b440b1..a4afe32a9b0 100644
--- a/net/ntop/files/ntop.sh
+++ b/net/ntop/files/ntop.sh
@@ -28,7 +28,7 @@ additional_args=''
# End of user-configurable variables
#----------------------------------------------------------------------
-args='-d -L -4 --set-pcap-nonblocking'
+args='-d -L --set-pcap-nonblocking'
[ ! -z $interfaces ] && args="$args -i $interfaces"
[ ! -z $http_port ] && args="$args -w $http_port"
href='#n39'>39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86