Changed the calls to virtualDirCallback.open(filename, UPNP_WRITE)

to (virtualDirCallback.open)(filename, UPNP_WRITE) (notice the
parenthesis) due to a change in glibc that produces compilation
errors.


git-svn-id: https://pupnp.svn.sourceforge.net/svnroot/pupnp/trunk@223 119443c7-1b9e-41f8-b6fc-b9c35fce742c
This commit is contained in:
Marcelo Roberto Jimenez
2007-09-01 16:58:58 +00:00
parent f7bb1f9582
commit 6455ac6eea
3 changed files with 8 additions and 2 deletions

View File

@@ -349,7 +349,7 @@ http_SendMessage( IN SOCKINFO * info,
filename = ( char * )va_arg( argp, char * );
if( Instr && Instr->IsVirtualFile )
Fp = virtualDirCallback.open( filename, UPNP_READ );
Fp = (virtualDirCallback.open)( filename, UPNP_READ );
else
Fp = fopen( filename, "rb" );