aboutsummaryrefslogtreecommitdiffstats
path: root/version_info.c
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2006-08-13 12:12:06 +0000
committerUlf Lamping <ulf.lamping@web.de>2006-08-13 12:12:06 +0000
commitf7f96d52ddf8e85821dfdf9b24ff9d3891debb50 (patch)
treeac59ddfe97bcec2e845a4cd8d6675738d147289a /version_info.c
parentf42021ee231df6198f334d13554528e92b2977c4 (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 :-( svn path=/trunk/; revision=18891
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)
/*