From f57c944e09417edcbcd69f2b01b937cadef39db2 Mon Sep 17 00:00:00 2001 From: Mark Whitley Date: Thu, 7 Dec 2000 19:56:48 +0000 Subject: Changed names of functions in utility.c and all affected files, to make compliant with the style guide. Everybody rebuild your tags file! --- findutils/find.c | 2 +- findutils/grep.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'findutils') diff --git a/findutils/find.c b/findutils/find.c index a86b07e73..c82b509b6 100644 --- a/findutils/find.c +++ b/findutils/find.c @@ -98,7 +98,7 @@ int find_main(int argc, char **argv) break; } - if (recursiveAction(directory, TRUE, FALSE, FALSE, + if (recursive_action(directory, TRUE, FALSE, FALSE, fileAction, fileAction, NULL) == FALSE) { return EXIT_FAILURE; } diff --git a/findutils/grep.c b/findutils/grep.c index c0193bce3..9014443b1 100644 --- a/findutils/grep.c +++ b/findutils/grep.c @@ -169,7 +169,7 @@ extern int grep_main(int argc, char **argv) file = fopen(cur_file, "r"); if (file == NULL) { if (!suppress_err_msgs) - errorMsg("%s: %s\n", cur_file, strerror(errno)); + error_msg("%s: %s\n", cur_file, strerror(errno)); } else { grep_file(file); -- cgit v1.2.3