From cad5364599eb5062d59e0c397ed638ddd61a8d5d Mon Sep 17 00:00:00 2001 From: Manuel Novoa III Date: Wed, 19 Mar 2003 09:13:01 +0000 Subject: Major coreutils update. --- libbb/recursive_action.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'libbb/recursive_action.c') diff --git a/libbb/recursive_action.c b/libbb/recursive_action.c index 8f9cc2f91..a4a4a7be3 100644 --- a/libbb/recursive_action.c +++ b/libbb/recursive_action.c @@ -60,10 +60,10 @@ int recursive_action(const char *fileName, if (status < 0) { #ifdef DEBUG_RECURS_ACTION - error_msg("status=%d followLinks=%d TRUE=%d", + bb_error_msg("status=%d followLinks=%d TRUE=%d", status, followLinks, TRUE); #endif - perror_msg("%s", fileName); + bb_perror_msg("%s", fileName); return FALSE; } @@ -89,14 +89,14 @@ int recursive_action(const char *fileName, if (dirAction != NULL && ! depthFirst) { status = dirAction(fileName, &statbuf, userData); if (! status) { - perror_msg("%s", fileName); + bb_perror_msg("%s", fileName); return FALSE; } else if (status == SKIP) return TRUE; } dir = opendir(fileName); if (!dir) { - perror_msg("%s", fileName); + bb_perror_msg("%s", fileName); return FALSE; } status = TRUE; @@ -117,7 +117,7 @@ int recursive_action(const char *fileName, closedir(dir); if (dirAction != NULL && depthFirst) { if (! dirAction(fileName, &statbuf, userData)) { - perror_msg("%s", fileName); + bb_perror_msg("%s", fileName); return FALSE; } } -- cgit v1.2.3