From DONOTREPLY at icculus.org Mon Nov 28 08:25:18 2005 From: DONOTREPLY at icculus.org (DONOTREPLY at icculus.org) Date: 28 Nov 2005 08:25:18 -0500 Subject: r775 - branches/stable-1.0 Message-ID: <20051128132518.2850.qmail@icculus.org> Author: icculus Date: 2005-11-28 08:25:18 -0500 (Mon, 28 Nov 2005) New Revision: 775 Modified: branches/stable-1.0/physfs.c Log: Fixed minor whitespace issue. Modified: branches/stable-1.0/physfs.c =================================================================== --- branches/stable-1.0/physfs.c 2005-10-12 22:03:56 UTC (rev 774) +++ branches/stable-1.0/physfs.c 2005-11-28 13:25:18 UTC (rev 775) @@ -1090,7 +1090,7 @@ } /* if */ else { - no_write = 1; + no_write = 1; } /* else */ if (no_write) From DONOTREPLY at icculus.org Mon Nov 28 08:28:12 2005 From: DONOTREPLY at icculus.org (DONOTREPLY at icculus.org) Date: 28 Nov 2005 08:28:12 -0500 Subject: r776 - branches/stable-1.0 Message-ID: <20051128132812.3573.qmail@icculus.org> Author: icculus Date: 2005-11-28 08:28:12 -0500 (Mon, 28 Nov 2005) New Revision: 776 Modified: branches/stable-1.0/CHANGELOG branches/stable-1.0/physfs.h Log: Fixed documentation for PHYSFS_setWriteDir(). Modified: branches/stable-1.0/CHANGELOG =================================================================== --- branches/stable-1.0/CHANGELOG 2005-11-28 13:25:18 UTC (rev 775) +++ branches/stable-1.0/CHANGELOG 2005-11-28 13:28:12 UTC (rev 776) @@ -4,6 +4,7 @@ -- stuff in the stable-1.0 branch, backported from 2.0.0 dev branch, etc --- +11282005 - Whitespace fix, and corrected docs on PHYSFS_setWriteDir(). 09062005 - Happy September. Minor MingW fixes (but it's still broken, I think). 07232005 - Fixed bug in zip archiver (thanks, J?rg Walter!). Updated zlib to 1.2.3, which properly includes the security fix. Fixed "make dist" Modified: branches/stable-1.0/physfs.h =================================================================== --- branches/stable-1.0/physfs.h 2005-11-28 13:25:18 UTC (rev 775) +++ branches/stable-1.0/physfs.h 2005-11-28 13:28:12 UTC (rev 776) @@ -635,9 +635,7 @@ * \fn int PHYSFS_setWriteDir(const char *newDir) * \brief Tell PhysicsFS where it may write files. * - * Set a new write dir. This will override the previous setting. If the - * directory or a parent directory doesn't exist in the physical filesystem, - * PhysicsFS will attempt to create them as needed. + * Set a new write dir. This will override the previous setting. * * This call will fail (and fail to change the write dir) if the current * write dir still has files open in it. From DONOTREPLY at icculus.org Mon Nov 28 08:28:33 2005 From: DONOTREPLY at icculus.org (DONOTREPLY at icculus.org) Date: 28 Nov 2005 08:28:33 -0500 Subject: r777 - trunk Message-ID: <20051128132833.3685.qmail@icculus.org> Author: icculus Date: 2005-11-28 08:28:33 -0500 (Mon, 28 Nov 2005) New Revision: 777 Modified: trunk/CHANGELOG trunk/physfs.h Log: Fixed documentation for PHYSFS_setWriteDir(). Modified: trunk/CHANGELOG =================================================================== --- trunk/CHANGELOG 2005-11-28 13:28:12 UTC (rev 776) +++ trunk/CHANGELOG 2005-11-28 13:28:33 UTC (rev 777) @@ -2,6 +2,7 @@ * CHANGELOG. */ +11282005 - Corrected docs on PHYSFS_setWriteDir(). 10122005 - Fixed locateInStringList() in physfs.c (thanks, Matze!). Patched archivers/wad.c to compile. 09192005 - Make unix mutexes recursive above pthread layer...fixes deadlock on Modified: trunk/physfs.h =================================================================== --- trunk/physfs.h 2005-11-28 13:28:12 UTC (rev 776) +++ trunk/physfs.h 2005-11-28 13:28:33 UTC (rev 777) @@ -654,9 +654,7 @@ * \fn int PHYSFS_setWriteDir(const char *newDir) * \brief Tell PhysicsFS where it may write files. * - * Set a new write dir. This will override the previous setting. If the - * directory or a parent directory doesn't exist in the physical filesystem, - * PhysicsFS will attempt to create them as needed. + * Set a new write dir. This will override the previous setting. * * This call will fail (and fail to change the write dir) if the current * write dir still has files open in it.