gnash-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-commit] gnash/cygnal http.cpp


From: Markus Gothe
Subject: [Gnash-commit] gnash/cygnal http.cpp
Date: Sun, 17 Dec 2006 23:55:50 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Markus Gothe <nihilus>  06/12/17 23:55:50

Modified files:
        cygnal         : http.cpp 

Log message:
        strcasestr -> strcasecmp

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/cygnal/http.cpp?cvsroot=gnash&r1=1.2&r2=1.3

Patches:
Index: http.cpp
===================================================================
RCS file: /sources/gnash/gnash/cygnal/http.cpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -b -r1.2 -r1.3
--- http.cpp    17 Dec 2006 23:50:48 -0000      1.2
+++ http.cpp    17 Dec 2006 23:55:50 -0000      1.3
@@ -15,7 +15,7 @@
 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 //
 
-/* $Id: http.cpp,v 1.2 2006/12/17 23:50:48 nihilus Exp $ */
+/* $Id: http.cpp,v 1.3 2006/12/17 23:55:50 nihilus Exp $ */
 
 #ifdef HAVE_CONFIG_H
 #include "config.h"
@@ -351,7 +351,7 @@
 {
 //    GNASH_REPORT_FUNCTION;
 
-    if (strcasestr(data, "Keep-Alive")) {
+    if (strcasecmp(data, "Keep-Alive")) {
        return true;
     } else {
        return false;




reply via email to

[Prev in Thread] Current Thread [Next in Thread]