diff options
author | Jim Meyering <jim@meyering.net> | 2004-07-04 18:12:55 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2004-07-04 18:12:55 +0000 |
commit | 5e1589ace88a4cadb60557262ef707ef4ed3bb55 (patch) | |
tree | c5e28f45d4258b7de5bc50d08dfd5f85aa233940 /src | |
parent | 6ce20e8caaee258b0fec201d5f5a3cfbdc5aeaad (diff) | |
download | coreutils-5e1589ace88a4cadb60557262ef707ef4ed3bb55.tar.xz |
(copy_internal): Add a FIXME comment.
Diffstat (limited to 'src')
-rw-r--r-- | src/copy.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/copy.c b/src/copy.c index dfdd15bbf..ef941cc25 100644 --- a/src/copy.c +++ b/src/copy.c @@ -1055,7 +1055,8 @@ copy_internal (const char *src_path, const char *dst_path, return 1; } - /* Using alloca for a pathname that may be (in theory) arbitrarily + /* FIXME: use fts: + Using alloca for a pathname that may be (in theory) arbitrarily long is not recommended. In fact, even forming such a name should be discouraged. Eventually, this code will be rewritten to use fts, so using alloca here will be less of a problem. */ |