[FFmpeg-cvslog] r13865 - trunk/ffserver.c

bcoudurier subversion
Sun Jun 22 03:13:33 CEST 2008


Author: bcoudurier
Date: Sun Jun 22 03:13:33 2008
New Revision: 13865

Log:
no need to print date anymore since done in http_log

Modified:
   trunk/ffserver.c

Modified: trunk/ffserver.c
==============================================================================
--- trunk/ffserver.c	(original)
+++ trunk/ffserver.c	Sun Jun 22 03:13:33 2008
@@ -339,14 +339,11 @@ static void __attribute__ ((format (prin
 
 static void log_connection(HTTPContext *c)
 {
-    char buf2[32];
-
     if (c->suppress_log)
         return;
 
-    http_log("%s - - [%s] \"%s %s %s\" %d %"PRId64"\n",
-             inet_ntoa(c->from_addr.sin_addr),
-             ctime1(buf2), c->method, c->url,
+    http_log("%s - - [%s] \"%s %s\" %d %"PRId64"\n",
+             inet_ntoa(c->from_addr.sin_addr), c->method, c->url,
              c->protocol, (c->http_error ? c->http_error : 200), c->data_count);
 }
 




More information about the ffmpeg-cvslog mailing list