diff options
author | Daniel Stenberg <daniel@haxx.se> | 2001-05-18 10:02:12 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2001-05-18 10:02:12 +0000 |
commit | 9e8615ae1dbb12cbabf6908195ab3126ce964c28 (patch) | |
tree | 839c435a75bbbb00352539abf90297fe78ec5fdc | |
parent | bb51c20c8b2262b6cc6ae332b83a3fcf52f302e0 (diff) |
strlcpy() turned static
-rw-r--r-- | lib/krb4.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/krb4.c b/lib/krb4.c index 3d7e530b1..a683e25e0 100644 --- a/lib/krb4.c +++ b/lib/krb4.c @@ -81,8 +81,8 @@ struct krb4_data { }; #ifndef HAVE_STRLCPY - -size_t +/* if it ever goes non-static, make it Curl_ prefixed! */ +size_t static strlcpy (char *dst, const char *src, size_t dst_sz) { size_t n; |