| CODENOTIFIER | HelpYou are not signed inSign in |
Project: Subversion
Revision: 32931
Author: arfrever
Date: 05 Sep 2008 10:52:37
Changes:Use svn_io_remove_dir2() instead of deprecated svn_io_remove_dir().
* subversion/libsvn_client/add.c
(svn_client__make_local_parents): Use svn_io_remove_dir2() instead of
deprecated svn_io_remove_dir().
| ... | ...@@ -2,7 +2,7 @@ | |
| 2 | 2 | * add.c: wrappers around wc add/mkdir functionality. |
| 3 | 3 | * |
| 4 | 4 | * ==================================================================== |
| 5 | * Copyright (c) 2000-2007 CollabNet. All rights reserved. | |
| 5 | * Copyright (c) 2000-2008 CollabNet. All rights reserved. | |
| 6 | 6 | * |
| 7 | 7 | * This software is licensed as described in the file COPYING, which |
| 8 | 8 | * you should have received as part of this distribution. The terms |
| ... | ...@@ -810,7 +810,7 @@ | |
| 810 | 810 | err instead, so that the user is warned that we just |
| 811 | 811 | created an unversioned directory? */ |
| 812 | 812 | |
| 813 | svn_error_clear(svn_io_remove_dir(path, pool)); | |
| 813 | svn_error_clear(svn_io_remove_dir2(path, FALSE, NULL, NULL, pool)); | |
| 814 | 814 | } |
| 815 | 815 | |
| 816 | 816 | return err; |