You are viewing a plain text version of this content. The canonical link for it is here.
Posted to mod_ftp-commits@incubator.apache.org by wr...@apache.org on 2007/01/26 02:17:02 UTC

svn commit: r500102 - /incubator/mod_ftp/trunk/modules/ftp/ftp_connection.c

Author: wrowe
Date: Thu Jan 25 18:17:02 2007
New Revision: 500102

URL: http://svn.apache.org/viewvc?view=rev&rev=500102
Log:
Do NOT display the build/date - this is more information than the
HTTP Server: string provides.

Modified:
    incubator/mod_ftp/trunk/modules/ftp/ftp_connection.c

Modified: incubator/mod_ftp/trunk/modules/ftp/ftp_connection.c
URL: http://svn.apache.org/viewvc/incubator/mod_ftp/trunk/modules/ftp/ftp_connection.c?view=diff&rev=500102&r1=500101&r2=500102
==============================================================================
--- incubator/mod_ftp/trunk/modules/ftp/ftp_connection.c (original)
+++ incubator/mod_ftp/trunk/modules/ftp/ftp_connection.c Thu Jan 25 18:17:02 2007
@@ -128,10 +128,9 @@
     }
 
     rv = ftp_reply(fc, c->output_filters, c->pool, FTP_REPLY_SERVICE_READY, 0,
-                   "%s FTP Server (%s %s) ready.",
+                   "%s FTP Server (%s) ready.",
                    c->base_server->server_hostname,
-                   ap_get_server_version(),
-                   ap_get_server_built());
+                   ap_get_server_version());
     return rv;
 }