diff options
author | Guy Harris <guy@alum.mit.edu> | 2002-03-06 23:37:12 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2002-03-06 23:37:12 +0000 |
commit | 43ca2567dc56e65273e21c929d2ee6e5b859d27d (patch) | |
tree | 23432f6a42c327e3e22576f74192e4b296eb9393 /gtk | |
parent | 6aad6e40b888690ad0b89d55a7c8011bdbb29760 (diff) | |
download | wireshark-43ca2567dc56e65273e21c929d2ee6e5b859d27d.tar.gz wireshark-43ca2567dc56e65273e21c929d2ee6e5b859d27d.tar.bz2 wireshark-43ca2567dc56e65273e21c929d2ee6e5b859d27d.zip |
Don't say "without SNMP"; that can confuse people into thinking it means
Ethereal doesn't dissect SNMP if not linked with an SNMP library (and
*did* confuse at least one person into thinking that). Say "without
SNMP MIB support", instead, as you only lose the ability to read SNMP
MIBs and interpret OIDs and variable bindings according to those MIBs.
svn path=/trunk/; revision=4894
Diffstat (limited to 'gtk')
-rw-r--r-- | gtk/main.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gtk/main.c b/gtk/main.c index 3cd67cb36f..6b368ec756 100644 --- a/gtk/main.c +++ b/gtk/main.c @@ -1,6 +1,6 @@ /* main.c * - * $Id: main.c,v 1.240 2002/03/05 12:03:26 guy Exp $ + * $Id: main.c,v 1.241 2002/03/06 23:37:12 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -28,13 +28,11 @@ * * To do: * - Graphs - * - Check for end of packet in dissect_* routines. * - Playback window * - Multiple window support * - Add cut/copy/paste * - Create header parsing routines * - Make byte view selections more fancy? - * */ #ifdef HAVE_CONFIG_H @@ -1418,7 +1416,7 @@ main(int argc, char *argv[]) g_string_append(comp_info_str, "(version unknown)"); #endif /* HAVE_SNMP_VERSION_H */ #else /* no SNMP */ - g_string_append(comp_info_str, ", without SNMP"); + g_string_append(comp_info_str, ", without SNMP MIB support"); #endif /* Now get our args */ |