aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/hostlist_ncp.c
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2008-02-11 13:15:48 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2008-02-11 13:15:48 +0000
commit56b098565351f32fa480cf59479d352a3864e165 (patch)
treef9a8d17908092616fdc853f2fec8843db8e6c181 /gtk/hostlist_ncp.c
parent89693ff72935b60dd5a46807f6cbd7ad0a83544e (diff)
Fixed setting filter in SCTP Chunk Counter statistics.
Fixed setting filter in NCP Endpoints. Corrected $Id$ in hostlist_ncp.c svn path=/trunk/; revision=24300
Diffstat (limited to 'gtk/hostlist_ncp.c')
-rw-r--r--gtk/hostlist_ncp.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/gtk/hostlist_ncp.c b/gtk/hostlist_ncp.c
index 5bf2f3dc68..debb488461 100644
--- a/gtk/hostlist_ncp.c
+++ b/gtk/hostlist_ncp.c
@@ -1,7 +1,8 @@
/* hostlist_ncp.c 2006 Greg Morris
* modified from endpoint_talkers_eth.c 2003 Ronnie Sahlberg
*
- * $Id: hostlist_ncp.c
+ * $Id$
+ *
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
@@ -61,8 +62,8 @@ gtk_ncp_hostlist_init(const char *optarg, void* userdata _U_)
{
const char *filter=NULL;
- if(!strncmp(optarg,"hosts,ncp,",11)){
- filter=optarg+11;
+ if(!strncmp(optarg,"hosts,ncp,",10)){
+ filter=optarg+10;
} else {
filter=NULL;
}