summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Changes1
-rw-r--r--src/misc.c8
-rw-r--r--version.log6
3 files changed, 6 insertions, 9 deletions
diff --git a/Changes b/Changes
index 714fa47f9..1676ad8f1 100644
--- a/Changes
+++ b/Changes
@@ -16,6 +16,7 @@ Anope Version S V N
01/26 F Memory leak in ChanServ LIST. [#840]
01/26 F Memory leaks in HostServ SETALL. [#841]
01/26 F Memory leak in ChanServ AKICK. [#842]
+01/26 F Removed broken detection of Windows MCE/Tablet edition. [#845]
Provided by Jan Milants <jan_renee@msn.com> - 2008
01/16 F Server traversion with next_server() failed to list all servers. [#831]
diff --git a/src/misc.c b/src/misc.c
index 918605566..86106889c 100644
--- a/src/misc.c
+++ b/src/misc.c
@@ -1405,14 +1405,6 @@ char *GetWindowsVersion(void)
extra = sstrdup("Embedded");
} else if (osvi.wSuiteMask & VER_SUITE_PERSONAL) {
extra = sstrdup("Home Edition");
-#ifdef SM_MEDIACENTER
- } else if (GetSystemMetrics(SM_MEDIACENTER)) {
- extra = sstrdup("Media Center Edition");
-#endif
-#ifdef SM_TABLETPC
- } else if (GetSystemMetrics(SM_TABLETPC)) {
- extra = sstrdup("Tablet Edition");
-#endif
} else {
extra = sstrdup(" ");
}
diff --git a/version.log b/version.log
index f2ba72260..0bfe1bd41 100644
--- a/version.log
+++ b/version.log
@@ -9,10 +9,14 @@ VERSION_MAJOR="1"
VERSION_MINOR="7"
VERSION_PATCH="21"
VERSION_EXTRA="-svn"
-VERSION_BUILD="1363"
+VERSION_BUILD="1364"
# $Log$
#
+# BUILD : 1.7.21 (1364)
+# BUGS : 844
+# NOTES : Removed broken version checking for windows media center edition and tablet edition; free(Jobe);
+#
# BUILD : 1.7.21 (1363)
# BUGS : 842
# NOTES : Fixed yet another memory leak; it wass cs_akick this time