diff options
author | Mark Whitley <markw@lineo.com> | 2000-12-07 19:56:48 +0000 |
---|---|---|
committer | Mark Whitley <markw@lineo.com> | 2000-12-07 19:56:48 +0000 |
commit | f57c944e09417edcbcd69f2b01b937cadef39db2 (patch) | |
tree | a55822621d54bd82c54e272fa986e45698fea0f1 /findutils | |
parent | 7b5c16ebe5f1b057603cf1c0b0187be418725c42 (diff) | |
download | busybox-w32-f57c944e09417edcbcd69f2b01b937cadef39db2.tar.gz busybox-w32-f57c944e09417edcbcd69f2b01b937cadef39db2.tar.bz2 busybox-w32-f57c944e09417edcbcd69f2b01b937cadef39db2.zip |
Changed names of functions in utility.c and all affected files, to make
compliant with the style guide. Everybody rebuild your tags file!
Diffstat (limited to 'findutils')
-rw-r--r-- | findutils/find.c | 2 | ||||
-rw-r--r-- | findutils/grep.c | 2 |
2 files changed, 2 insertions, 2 deletions
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) | |||
98 | break; | 98 | break; |
99 | } | 99 | } |
100 | 100 | ||
101 | if (recursiveAction(directory, TRUE, FALSE, FALSE, | 101 | if (recursive_action(directory, TRUE, FALSE, FALSE, |
102 | fileAction, fileAction, NULL) == FALSE) { | 102 | fileAction, fileAction, NULL) == FALSE) { |
103 | return EXIT_FAILURE; | 103 | return EXIT_FAILURE; |
104 | } | 104 | } |
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) | |||
169 | file = fopen(cur_file, "r"); | 169 | file = fopen(cur_file, "r"); |
170 | if (file == NULL) { | 170 | if (file == NULL) { |
171 | if (!suppress_err_msgs) | 171 | if (!suppress_err_msgs) |
172 | errorMsg("%s: %s\n", cur_file, strerror(errno)); | 172 | error_msg("%s: %s\n", cur_file, strerror(errno)); |
173 | } | 173 | } |
174 | else { | 174 | else { |
175 | grep_file(file); | 175 | grep_file(file); |