Slightly reshape the version text: Bring the OS info above the WinPcap text - this just makes more sense IMHO

svn path=/trunk/; revision=19294
This commit is contained in:
Ulf Lamping 2006-09-22 23:08:06 +00:00
parent 30619416b9
commit 9e72b99f92
2 changed files with 9 additions and 4 deletions

View File

@ -700,7 +700,8 @@ get_runtime_pcap_version(GString *str)
}
} else
g_string_append(str, "without WinPcap");
g_string_append(str, " ");
/*g_string_append(str, " ");*/
}
#else /* HAVE_LIBPCAP */

View File

@ -292,9 +292,8 @@ get_runtime_version_info(GString *str)
struct utsname name;
#endif
get_runtime_pcap_version(str);
g_string_append(str, "on ");
#if defined(_WIN32)
/*
* See
@ -448,7 +447,12 @@ get_runtime_version_info(GString *str)
#else
g_string_append(str, "an unknown OS");
#endif
g_string_append(str, ".");
g_string_append(str, "\n");
get_runtime_pcap_version(str);
g_string_append(str, ".");
end_string(str);
}