aboutsummaryrefslogtreecommitdiffstats
path: root/version_info.c
diff options
context:
space:
mode:
authorulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>2006-08-13 12:12:06 +0000
committerulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>2006-08-13 12:12:06 +0000
commit0d783ed8676e28fbe36fc6c3168b1f71cd4765aa (patch)
treeac59ddfe97bcec2e845a4cd8d6675738d147289a /version_info.c
parent9d889dbe50a0c0a894ce73f0d727d6c6800cf806 (diff)
another place missing a call to utf_16to8(), the about box was showing "Windows XP S", where it should be "Windows XP Service Pack 2"
dumpcap uses this too, so I had to duplicate utf_16to8 there :-( git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@18891 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'version_info.c')
-rw-r--r--version_info.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/version_info.c b/version_info.c
index dc8721e652..1bfeba4a37 100644
--- a/version_info.c
+++ b/version_info.c
@@ -354,7 +354,7 @@ get_runtime_version_info(GString *str)
break;
}
if (info.szCSDVersion[0] != '\0')
- g_string_sprintfa(str, " %s", info.szCSDVersion);
+ g_string_sprintfa(str, " %s", utf_16to8(info.szCSDVersion));
g_string_sprintfa(str, ", build %lu", info.dwBuildNumber);
#elif defined(HAVE_SYS_UTSNAME_H)
/*