diff options
author | 2014-04-19 00:41:37 +0000 | |
---|---|---|
committer | 2014-04-19 00:41:37 +0000 | |
commit | 143cedbbb5931c72fe516e48392a9203fe83567d (patch) | |
tree | a36bf02143b29b597cd99a04fc086818b33930f2 /lib/libcrypto/objects/obj_dat.c | |
parent | OpenSSH 6.5 and 6.6 have a bug that causes ~0.2% of connections (diff) | |
download | wireguard-openbsd-143cedbbb5931c72fe516e48392a9203fe83567d.tar.xz wireguard-openbsd-143cedbbb5931c72fe516e48392a9203fe83567d.zip |
use intrinsic strlcpy and strlcat everywhere so we only have one set of
funcitons to check for incorrect use. keep BUF_strlcpy and BUF_strlcat
for API comptibility only.
ok tedu@
Diffstat (limited to 'lib/libcrypto/objects/obj_dat.c')
-rw-r--r-- | lib/libcrypto/objects/obj_dat.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libcrypto/objects/obj_dat.c b/lib/libcrypto/objects/obj_dat.c index cf4db7c6b5c..b3388b117d1 100644 --- a/lib/libcrypto/objects/obj_dat.c +++ b/lib/libcrypto/objects/obj_dat.c @@ -486,7 +486,7 @@ int OBJ_obj2txt(char *buf, int buf_len, const ASN1_OBJECT *a, int no_name) if (s) { if (buf) - BUF_strlcpy(buf,s,buf_len); + strlcpy(buf,s,buf_len); n=strlen(s); return n; } @@ -576,7 +576,7 @@ int OBJ_obj2txt(char *buf, int buf_len, const ASN1_OBJECT *a, int no_name) *buf++ = '.'; buf_len--; } - BUF_strlcpy(buf,bndec,buf_len); + strlcpy(buf,bndec,buf_len); if (i > buf_len) { buf += buf_len; @@ -598,7 +598,7 @@ int OBJ_obj2txt(char *buf, int buf_len, const ASN1_OBJECT *a, int no_name) i=strlen(tbuf); if (buf && (buf_len > 0)) { - BUF_strlcpy(buf,tbuf,buf_len); + strlcpy(buf,tbuf,buf_len); if (i > buf_len) { buf += buf_len; |