summaryrefslogtreecommitdiff
path: root/libltdl/lt__strl.c
diff options
context:
space:
mode:
authorGary V. Vaughan <gary@gnu.org>2013-08-23 11:12:57 +0700
committerGary V. Vaughan <gary@gnu.org>2013-08-23 11:12:57 +0700
commite87a65fa0cc132dd195e0c42f110f8e9b49638e1 (patch)
treeb685208b9269bfa975bd61151832914744340bd9 /libltdl/lt__strl.c
parent5151a7a167ef9c4afc259a843f1aa39063d36f91 (diff)
downloadlibtool-e87a65fa0cc132dd195e0c42f110f8e9b49638e1.tar.gz
maint: correct many abuses of the word "which".
* HACKING, NEWS, TODO, bootstrap, bootstrap.conf, build-aux/ltmain.in, cfg.mk, configure.ac, doc/libtool.texi, doc/notes.texi, gl/build-aux/bootstrap.in, gl/build-aux/extract-trace, gl/build-aux/funclib.sh, gl/doc/bootstrap.texi, libltdl/libltdl/lt_system.h, libltdl/loaders/loadlibrary.c, libltdl/lt__strl.c, libltdl/lt_dlloader.c, libltdl/ltdl.c, libtoolize.in, m4/libtool.m4, m4/ltdl.m4, m4/ltsugar.m4, m4/lt~obsolete.m4, tests/exceptions.at, tests/need_lib_prefix.at, tests/static.at: Use "which" correctly, or replace with "that", "where" or "what" as appropriate. Signed-off-by: Gary V. Vaughan <gary@gnu.org>
Diffstat (limited to 'libltdl/lt__strl.c')
-rw-r--r--libltdl/lt__strl.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libltdl/lt__strl.c b/libltdl/lt__strl.c
index 065566d6..f84247b9 100644
--- a/libltdl/lt__strl.c
+++ b/libltdl/lt__strl.c
@@ -36,9 +36,9 @@ or obtained by writing to the Free Software Foundation, Inc.,
/*
lt_strlcat appends the NULL-terminated string src to the end of dst.
It will append at most dstsize - strlen(dst) - 1 bytes,
- NULL-terminating the result. The total length of the string which
+ NULL-terminating the result. The total length of the string that
would have been created given sufficient buffer size (may be longer
- than dstsize) is returned. This function substitutes for strlcat()
+ than dstsize) is returned. This function substitutes for strlcat(),
which is available under NetBSD, FreeBSD and Solaris 9.
Buffer overflow can be checked as follows:
@@ -84,9 +84,9 @@ lt_strlcat(char *dst, const char *src, const size_t dstsize)
/*
lt_strlcpy copies up to dstsize - 1 characters from the NULL-terminated
string src to dst, NULL-terminating the result. The total length of
- the string which would have been created given sufficient buffer
+ the string that would have been created given sufficient buffer
size (may be longer than dstsize) is returned. This function
- substitutes for strlcpy() which is available under OpenBSD, FreeBSD
+ substitutes for strlcpy(), which is available under OpenBSD, FreeBSD
and Solaris 9.
Buffer overflow can be checked as follows: