summaryrefslogtreecommitdiffstats
path: root/server/gen_test_char.c
diff options
context:
space:
mode:
authorJeff Trawick <trawick@apache.org>2009-03-27 00:47:52 +0100
committerJeff Trawick <trawick@apache.org>2009-03-27 00:47:52 +0100
commitee32468a33d082bf8ea5c804efbee76676ef6d68 (patch)
tree6b5074eeaf71cc1262d273d6f4160d9eaf6eb2f4 /server/gen_test_char.c
parent* Update transformation. (diff)
downloadapache2-ee32468a33d082bf8ea5c804efbee76676ef6d68.tar.xz
apache2-ee32468a33d082bf8ea5c804efbee76676ef6d68.zip
remove OS/2 platform support
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@758929 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server/gen_test_char.c')
-rw-r--r--server/gen_test_char.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/server/gen_test_char.c b/server/gen_test_char.c
index 59947d5888..16d0c7ceb0 100644
--- a/server/gen_test_char.c
+++ b/server/gen_test_char.c
@@ -62,14 +62,14 @@ int main(int argc, char *argv[])
printf("\n ");
/* escape_shell_cmd */
-#if defined(WIN32) || defined(OS2)
- /* Win32/OS2 have many of the same vulnerable characters
+#if defined(WIN32)
+ /* Win32 has many of the same vulnerable characters
* as Unix sh, plus the carriage return and percent char.
* The proper escaping of these characters varies from unix
- * since Win32/OS2 use carets or doubled-double quotes,
+ * since Win32 uses carets or doubled-double quotes,
* and neither lf nor cr can be escaped. We escape unix
* specific as well, to assure that cross-compiled unix
- * applications behave similiarly when invoked on win32/os2.
+ * applications behave similiarly when invoked on win32.
*
* Rem please keep in-sync with apr's list in win32/filesys.c
*/