diff options
author | Jim Meyering <jim@meyering.net> | 2003-11-21 08:21:23 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-11-21 08:21:23 +0000 |
commit | d23aea4a1e165893531a7aa5883d25a252336600 (patch) | |
tree | 291389175cc248f2546e97db5fd422feef594daf /lib | |
parent | f5a0858343636632777bed0e3069e5a7fd4d03d3 (diff) | |
download | coreutils-d23aea4a1e165893531a7aa5883d25a252336600.tar.xz |
(xreadlink): Correct outdated comment.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/xreadlink.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/xreadlink.c b/lib/xreadlink.c index e8c677b44..347357897 100644 --- a/lib/xreadlink.c +++ b/lib/xreadlink.c @@ -49,7 +49,7 @@ extern int errno; /* Call readlink to get the symbolic link value of FILENAME. Return a pointer to that NUL-terminated string in malloc'd storage. If readlink fails, return NULL (caller may use errno to diagnose). - If realloc fails, or if the link value is longer than SIZE_MAX :-), + If malloc fails, or if the link value is longer than SSIZE_MAX :-), give a diagnostic and exit. */ char * |