You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@santuario.apache.org by bl...@apache.org on 2003/03/23 10:49:49 UTC

cvs commit: xml-security/c/src/utils/unixutils XSECBinHTTPURIInputStream.cpp

blautenb    2003/03/23 01:49:49

  Modified:    c/src/utils/unixutils XSECBinHTTPURIInputStream.cpp
  Log:
  Silly mistype in ==
  
  Revision  Changes    Path
  1.3       +5 -2      xml-security/c/src/utils/unixutils/XSECBinHTTPURIInputStream.cpp
  
  Index: XSECBinHTTPURIInputStream.cpp
  ===================================================================
  RCS file: /home/cvs/xml-security/c/src/utils/unixutils/XSECBinHTTPURIInputStream.cpp,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- XSECBinHTTPURIInputStream.cpp	15 Mar 2003 22:41:46 -0000	1.2
  +++ XSECBinHTTPURIInputStream.cpp	23 Mar 2003 09:49:49 -0000	1.3
  @@ -71,6 +71,9 @@
    * $Id$
    *
    * $Log$
  + * Revision 1.3  2003/03/23 09:49:49  blautenb
  + * Silly mistype in ==
  + *
    * Revision 1.2  2003/03/15 22:41:46  blautenb
    * Add 301 (permanently moved) support
    *
  @@ -274,7 +277,7 @@
   
       int httpResponse = atoi(p);
   
  -	if (httpResponse == 302 || httpResponse = 301) {
  +	if (httpResponse == 302 || httpResponse == 301) {
   		//Once grows, should use a switch
   		char redirectBuf[256];
   		int q;