Fix for isFileInVirtualDir. Thanks to Peter Hartley for the patch.
git-svn-id: https://pupnp.svn.sourceforge.net/svnroot/pupnp/trunk@290 119443c7-1b9e-41f8-b6fc-b9c35fce742c
This commit is contained in:
parent
f94b090c80
commit
1ab5221db5
@ -9,10 +9,14 @@ Version 1.6.4
|
|||||||
@name UPNP_E_UNSUBSCRIBE_UNACCAPTED [-302]
|
@name UPNP_E_UNSUBSCRIBE_UNACCAPTED [-302]
|
||||||
Also, the documentation file name was mispelled and was corrected in
|
Also, the documentation file name was mispelled and was corrected in
|
||||||
the Makefile.am.
|
the Makefile.am.
|
||||||
|
|
||||||
2008-01-07 Marcelo Jimenez <mroberto(at)users.sourceforge.net>
|
2008-01-07 Marcelo Jimenez <mroberto(at)users.sourceforge.net>
|
||||||
* Putting back a "defined(__OSX__)" that has been removed in the
|
* Putting back a "defined(__OSX__)" that has been removed in the
|
||||||
previous *BSD patch. Thanks to Chris Pickel for pointing it out.
|
previous *BSD patch. Thanks to Chris Pickel for pointing it out.
|
||||||
|
|
||||||
|
2008-01-21 Marcelo Jimenez <mroberto(at)users.sourceforge.net>
|
||||||
|
* Fix for isFileInVirtualDir. Thanks to Peter Hartley for the patch.
|
||||||
|
|
||||||
*******************************************************************************
|
*******************************************************************************
|
||||||
Version 1.6.3
|
Version 1.6.3
|
||||||
*******************************************************************************
|
*******************************************************************************
|
||||||
|
1
THANKS
1
THANKS
@ -36,6 +36,7 @@ exempt of errors.
|
|||||||
- Oskar Liljeblad
|
- Oskar Liljeblad
|
||||||
- Michael (oxygenic)
|
- Michael (oxygenic)
|
||||||
- Paul Vixie
|
- Paul Vixie
|
||||||
|
- Peter Hartley
|
||||||
- Rene Hexel
|
- Rene Hexel
|
||||||
- Robert Gingher (robsbox)
|
- Robert Gingher (robsbox)
|
||||||
- Siva Chandran
|
- Siva Chandran
|
||||||
|
@ -745,7 +745,7 @@ isFileInVirtualDir( IN char *filePath )
|
|||||||
return TRUE;
|
return TRUE;
|
||||||
} else {
|
} else {
|
||||||
if( ( strncmp( pCurVirtualDir->dirName, filePath, webDirLen )
|
if( ( strncmp( pCurVirtualDir->dirName, filePath, webDirLen )
|
||||||
== 0 ) && ( filePath[webDirLen] == '/' ) )
|
== 0 ) && ( filePath[webDirLen] == '/' || filePath[webDirLen] == '\0' ) )
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user