diff options
author | Jim Meyering <jim@meyering.net> | 2007-08-22 11:20:41 +0200 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2007-08-22 11:20:41 +0200 |
commit | a5153c5b0696b8398c4267f7d5755b53b1cfaa3e (patch) | |
tree | 1aefab81b341d8801afe22c16477e1dcbd66ae88 | |
parent | fba081f9238e93ad9383cd2c36d6e1b8ef1ad20c (diff) | |
download | coreutils-a5153c5b0696b8398c4267f7d5755b53b1cfaa3e.tar.xz |
* src/copy.c (DEST_INFO_INITIAL_CAPACITY): Correct a comment.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | src/copy.c | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2007-08-22 Jim Meyering <jim@meyering.net> + + * src/copy.c (DEST_INFO_INITIAL_CAPACITY): Correct a comment. + 2007-08-21 Jim Meyering <jim@meyering.net> By default, do not install hostname anymore. diff --git a/src/copy.c b/src/copy.c index af60b572a..b7bf92a6c 100644 --- a/src/copy.c +++ b/src/copy.c @@ -85,7 +85,7 @@ struct F_triple dev_t st_dev; }; -/* Initial size of the above hash table. */ +/* Initial size of the cp.dest_info hash table. */ #define DEST_INFO_INITIAL_CAPACITY 61 static bool copy_internal (char const *src_name, char const *dst_name, |