MS usually calls this a build number, not a patch (e.g. see the system version info)
authorulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>
Fri, 20 Oct 2006 20:21:52 +0000 (20:21 +0000)
committerulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>
Fri, 20 Oct 2006 20:21:52 +0000 (20:21 +0000)
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@19643 f5534014-38df-0310-8fa8-9805f1628bb7

version_info.c

index 0d2dd093e0352428cb6ac7706f74399a9d8a3664..179f3b14e19a7610715a606d464d3369d215e2f0 100644 (file)
@@ -484,14 +484,14 @@ get_runtime_version_info(GString *str, void (*additional_info)(GString *))
                    (_MSC_FULL_VER / 10000000) - 6,
                    (_MSC_FULL_VER / 100000) % 100);
                if ((_MSC_FULL_VER % 100000) != 0)
-                       g_string_sprintfa(str, " patch %d",
+                       g_string_sprintfa(str, " build %d",
                            _MSC_FULL_VER % 100000);
        } else {
                g_string_sprintfa(str, "\n\nBuilt using Microsoft Visual C++ %d.%d",
                    (_MSC_FULL_VER / 1000000) - 6,
                    (_MSC_FULL_VER / 10000) % 100);
                if ((_MSC_FULL_VER % 10000) != 0)
-                       g_string_sprintfa(str, " patch %d",
+                       g_string_sprintfa(str, " build %d",
                            _MSC_FULL_VER % 10000);
        }
        g_string_sprintfa(str, "\n");