X-Git-Url: http://www.privoxy.org/gitweb/?a=blobdiff_plain;f=encode.c;h=d7418eeb582a4d56e8b921f24b2107ea5838e00f;hb=61dc91dd24280d66ff6ca6ae7b72a37c7ef032c7;hp=d61ae72dd47b79e28aa88f5d59eeed0f0b5ed5f1;hpb=50f87c9446b435d47c371f63615260636639f450;p=privoxy.git diff --git a/encode.c b/encode.c index d61ae72d..d7418eeb 100644 --- a/encode.c +++ b/encode.c @@ -1,4 +1,4 @@ -const char encode_rcs[] = "$Id: encode.c,v 1.25 2012/03/09 16:23:50 fabiankeil Exp $"; +const char encode_rcs[] = "$Id: encode.c,v 1.26 2012/03/09 16:24:36 fabiankeil Exp $"; /********************************************************************* * * File : $Source: /cvsroot/ijbswa/current/encode.c,v $ @@ -428,7 +428,7 @@ char *percent_encode_url(const char *s) { char c; char *p = buf; - while((c = *s++) != '\0') + while ((c = *s++) != '\0') { const unsigned int i = (unsigned char)c; if (i >= sizeof(allowed_characters) || '\0' == allowed_characters[i])