Changeset 411 for branches/branch-1-0/src/helpers/dosh.c
- Timestamp:
- Mar 29, 2012, 11:03:40 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/branch-1-0/src/helpers/dosh.c
r385 r411 30 30 31 31 /* 32 * This file Copyright (C) 1997-201 0Ulrich Mller.32 * This file Copyright (C) 1997-2012 Ulrich Mller. 33 33 * This file is part of the "XWorkplace helpers" source package. 34 34 * This is free software; you can redistribute it and/or modify … … 3502 3502 *@@changed WarpIN V1.0.15 (2007-03-27) [pr]: allow NULL pulDirs and pulFiles 3503 3503 *@@changed WarpIN V1.0.16 (2007-07-28) [pr]: bump directory count on recursive delete failures @@fixes 1001 3504 *@@changed WarpIN V1.0.20 (2012-03-29) [pr]: path not found no longer an error 3504 3505 */ 3505 3506 … … 3592 3593 3593 3594 if (arcReturn == NO_ERROR) 3595 { 3594 3596 // success so far: 3595 3597 // delete our directory now 3596 3598 arcReturn = DosDeleteDir((PSZ)pcszDir); 3599 if (arcReturn == ERROR_PATH_NOT_FOUND) // WarpIN V1.0.20 (2012-03-29) [pr] 3600 arcReturn = NO_ERROR; 3601 } 3597 3602 3598 3603 return (arcReturn);
Note:
See TracChangeset
for help on using the changeset viewer.