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 2008/04/09 09:28:08 UTC

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

Author: wrowe
Date: Wed Apr  9 00:28:07 2008
New Revision: 646211

URL: http://svn.apache.org/viewvc?rev=646211&view=rev
Log:
Revert breakage from "style cleanup" svn commit 629101

PR: 44653
Submitted by:Tom Donovan <Tom.Donovan acm.org>

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=646211&r1=646210&r2=646211&view=diff
==============================================================================
--- httpd/mod_ftp/trunk/modules/ftp/ftp_commands.c (original)
+++ httpd/mod_ftp/trunk/modules/ftp/ftp_commands.c Wed Apr  9 00:28:07 2008
@@ -191,7 +191,7 @@
  * Returns: 1 on error or 0 on success, a1 and a2 are modified to point
  *          to the correct values.
  */
-static int ftp_parse2(apr_pool_t *t *pool, const char *cmd, char **a1, char **a2)
+static int ftp_parse2(apr_pool_t *pool, const char *cmd, char **a1, char **a2)
 {
     *a1 = ap_getword_white(pool, &cmd);
     *a2 = apr_pstrdup(pool, cmd);