Fix for missing else in httpreadwrite.c.

git-svn-id: https://pupnp.svn.sourceforge.net/svnroot/pupnp/trunk@26 119443c7-1b9e-41f8-b6fc-b9c35fce742c
This commit is contained in:
Marcelo Roberto Jimenez 2006-06-27 21:40:30 +00:00
parent bcaba51f57
commit f28f81f820
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2006-06-26 Marcelo Jimenez <mroberto@users.sourceforge.net>
* Fix for missing "else" in httpreadwrite.c. Thanks to npapadop
for the patch.
2006-06-26 Marcelo Jimenez <mroberto@users.sourceforge.net>
* Fix for va_list initialization in x86_64 architectures.

View File

@ -1948,7 +1948,7 @@ http_MakeMessage( INOUT membuffer * buf,
}
/* --- PATCH START - Sergey 'Jin' Bostandzhyan <jin_eld@users.sourceforge.net> */
if( c == 'X' ) // C string
else if( c == 'X' ) // C string
{
s = ( char * )va_arg( argp, char * );