diff --git a/libupnp/ChangeLog b/libupnp/ChangeLog index f414a89..e7f9f42 100644 --- a/libupnp/ChangeLog +++ b/libupnp/ChangeLog @@ -1,3 +1,8 @@ +2006-06-26 Marcelo Jimenez + + * Fix for missing "else" in httpreadwrite.c. Thanks to npapadop + for the patch. + 2006-06-26 Marcelo Jimenez * Fix for va_list initialization in x86_64 architectures. diff --git a/libupnp/upnp/src/genlib/net/http/httpreadwrite.c b/libupnp/upnp/src/genlib/net/http/httpreadwrite.c index 1b913f0..5635b96 100644 --- a/libupnp/upnp/src/genlib/net/http/httpreadwrite.c +++ b/libupnp/upnp/src/genlib/net/http/httpreadwrite.c @@ -1948,7 +1948,7 @@ http_MakeMessage( INOUT membuffer * buf, } /* --- PATCH START - Sergey 'Jin' Bostandzhyan */ - if( c == 'X' ) // C string + else if( c == 'X' ) // C string { s = ( char * )va_arg( argp, char * );