"ssn_range" needs to be a copy of "global_ssn_range", so that it's not
[obnox/wireshark/wip.git] / version_info.c
index 2bba50551b2976f4c71d2650832327352f867d8c..77ea62a544edc5a9874c145b015d6f75649c3c59 100644 (file)
@@ -1,7 +1,7 @@
 /* version_info.c
  * Routines to report version information for stuff used by Ethereal
  *
- * $Id: version_info.c,v 1.3 2004/02/24 01:14:27 guy Exp $
+ * $Id$
  *
  * Ethereal - Network traffic analyzer
  * By Gerald Combs <gerald@ethereal.com>
@@ -189,7 +189,7 @@ get_compiled_version_info(GString *str)
        break_point = str->len - 1;
        g_string_append(str,
                        "\nNOTE: this build does not support the \"matches\" operator for Ethereal filter"
-                       "\nsyntax.\n");
+                       "\nsyntax.");
        do_word_wrap(str, break_point);
 #endif /* HAVE_LIBPCRE */
 }
@@ -201,7 +201,7 @@ get_compiled_version_info(GString *str)
 void
 get_runtime_version_info(GString *str)
 {
-#if defined(WIN32)
+#if defined(_WIN32)
        OSVERSIONINFO info;
 #elif defined(HAVE_SYS_UTSNAME_H)
        struct utsname name;
@@ -210,7 +210,7 @@ get_runtime_version_info(GString *str)
        get_runtime_pcap_version(str);
 
        g_string_append(str, "on ");
-#if defined(WIN32)
+#if defined(_WIN32)
        info.dwOSVersionInfoSize = sizeof info;
        if (!GetVersionEx(&info)) {
                /*