You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by wr...@apache.org on 2007/12/08 00:33:45 UTC

svn commit: r602272 - /httpd/mod_ftp/trunk/modules/ftp/ftp_commands.c

Author: wrowe
Date: Fri Dec  7 15:33:44 2007
New Revision: 602272

URL: http://svn.apache.org/viewvc?rev=602272&view=rev
Log:
Revert the mess created by 1.291.4.1.4.1.2.10 and 1.291.4.1.4.1.2.15
from the depths of pre-ASF history.  Quoting the original committer...

  Add in aliases for ABOR for the 2 potentials of 'A' being in
  OOB (at the URG) and therefore not read as well as DM being read.

  Snooping discovers another possibility (we read in IP (xF4)). Should
  figure out a better way to match this :)

These cases need fixing, but as HELP results demonstrate, not in a manner
that corrupts the HELP entries.


Modified:
    httpd/mod_ftp/trunk/modules/ftp/ftp_commands.c

Modified: httpd/mod_ftp/trunk/modules/ftp/ftp_commands.c
URL: http://svn.apache.org/viewvc/httpd/mod_ftp/trunk/modules/ftp/ftp_commands.c?rev=602272&r1=602271&r2=602272&view=diff
==============================================================================
--- httpd/mod_ftp/trunk/modules/ftp/ftp_commands.c (original)
+++ httpd/mod_ftp/trunk/modules/ftp/ftp_commands.c Fri Dec  7 15:33:44 2007
@@ -2991,19 +2991,4 @@
     ftp_hook_cmd_alias("XRMD", "RMD", FTP_HOOK_LAST,
                        FTP_NEED_LOGIN|FTP_TAKE1,
                        "<sp> path-name");
-
-    /* Handle potential URG ptr confusion - 'A' is in OOB */
-    ftp_hook_cmd_alias("BOR", "ABOR", FTP_HOOK_LAST, 
-                 FTP_NEED_LOGIN|FTP_TAKE0|FTP_DATA_INTR, 
-                 "(abort operation)");
-
-    /* Handle potential URG ptr confusion - We read DM */
-    ftp_hook_cmd_alias("\xf2" "ABOR", "ABOR", FTP_HOOK_LAST, 
-                 FTP_NEED_LOGIN|FTP_TAKE0|FTP_DATA_INTR, 
-                 "(abort operation)");
-
-    /* Handle potential URG ptr confusion - We read IP */
-    ftp_hook_cmd_alias("\xf4" "ABOR", "ABOR", FTP_HOOK_LAST, 
-                 FTP_NEED_LOGIN|FTP_TAKE0|FTP_DATA_INTR, 
-                 "(abort operation)");
 }