rename functions to more understandable names
[oweals/busybox.git] / libbb / remove_file.c
index ee1aaa5cd3d980b28b1af5fc0d56ac887475c7fb..509aa6a6dd32e1c7cb30fae9934e7b6e57d7336e 100644 (file)
@@ -4,19 +4,7 @@
  *
  * Copyright (C) 2001 Matt Kraai <kraai@alumni.carnegiemellon.edu>
  *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
  */
 
 #include <stdio.h>
@@ -65,14 +53,13 @@ int remove_file(const char *path, int flags)
                if ((!(flags & FILEUTILS_FORCE) && access(path, W_OK) < 0 &&
                                        isatty(0)) ||
                                (flags & FILEUTILS_INTERACTIVE)) {
-                       fprintf(stderr, "%s: descend into directory `%s'? ", bb_applet_name,
+                       fprintf(stderr, "%s: descend into directory `%s'? ", applet_name,
                                        path);
                        if (!bb_ask_confirmation())
                                return 0;
                }
 
                if ((dp = opendir(path)) == NULL) {
-                       bb_perror_msg("unable to open `%s'", path);
                        return -1;
                }
 
@@ -93,7 +80,7 @@ int remove_file(const char *path, int flags)
                }
 
                if (flags & FILEUTILS_INTERACTIVE) {
-                       fprintf(stderr, "%s: remove directory `%s'? ", bb_applet_name, path);
+                       fprintf(stderr, "%s: remove directory `%s'? ", applet_name, path);
                        if (!bb_ask_confirmation())
                                return status;
                }
@@ -109,7 +96,7 @@ int remove_file(const char *path, int flags)
                                        !S_ISLNK(path_stat.st_mode) &&
                                        isatty(0)) ||
                                (flags & FILEUTILS_INTERACTIVE)) {
-                       fprintf(stderr, "%s: remove `%s'? ", bb_applet_name, path);
+                       fprintf(stderr, "%s: remove `%s'? ", applet_name, path);
                        if (!bb_ask_confirmation())
                                return 0;
                }