summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgeniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b <geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864>2008-01-26 13:29:02 +0000
committergeniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b <geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864>2008-01-26 13:29:02 +0000
commit395f3edaccb10fce088b2426bd38026ab593fdec (patch)
treecef95cc5ce7a35d2a08b38177fd342996409a3a8
parentba7e2d8440ad1936f33e0c017d1d202b7008b147 (diff)
BUILD : 1.7.21 (1364) BUGS : 844 NOTES : Removed broken version checking for windows media center edition and tablet edition; free(Jobe);
git-svn-id: svn://svn.anope.org/anope/trunk@1364 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1079 5417fbe8-f217-4b02-8779-1006273d7864
-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