diff options
author | Mark Whitley | 2000-12-07 19:56:48 +0000 |
---|---|---|
committer | Mark Whitley | 2000-12-07 19:56:48 +0000 |
commit | f57c944e09417edcbcd69f2b01b937cadef39db2 (patch) | |
tree | a55822621d54bd82c54e272fa986e45698fea0f1 /coreutils/du.c | |
parent | 7b5c16ebe5f1b057603cf1c0b0187be418725c42 (diff) | |
download | busybox-f57c944e09417edcbcd69f2b01b937cadef39db2.zip busybox-f57c944e09417edcbcd69f2b01b937cadef39db2.tar.gz |
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 'coreutils/du.c')
-rw-r--r-- | coreutils/du.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/coreutils/du.c b/coreutils/du.c index 313a910..fa76465 100644 --- a/coreutils/du.c +++ b/coreutils/du.c @@ -97,7 +97,7 @@ static long du(char *filename) } if (len + strlen(name) + 1 > BUFSIZ) { - errorMsg(name_too_long); + error_msg(name_too_long); du_depth--; return 0; } @@ -156,7 +156,7 @@ int du_main(int argc, char **argv) for (i=optind; i < argc; i++) { if ((sum = du(argv[i])) == 0) status = EXIT_FAILURE; - if (sum && isDirectory(argv[i], FALSE, NULL)) { + if (sum && is_directory(argv[i], FALSE, NULL)) { print_normal(sum, argv[i]); } reset_ino_dev_hashtable(); @@ -166,7 +166,7 @@ int du_main(int argc, char **argv) return status; } -/* $Id: du.c,v 1.28 2000/12/06 15:56:31 kraai Exp $ */ +/* $Id: du.c,v 1.29 2000/12/07 19:56:48 markw Exp $ */ /* Local Variables: c-file-style: "linux" |