diff options
author | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2001-11-01 20:10:12 +0000 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2001-11-01 20:10:12 +0000 |
commit | 5a1d743aa8f7d736a51020d9af123e082712dbd1 (patch) | |
tree | 2d3ceac6076bcfb79b3d99c2a7b929e546dc79fe /lib/gnutls_mem.c | |
parent | de83b6e7c3855ddd8d709f10123578057b28fa61 (diff) | |
download | gnutls-5a1d743aa8f7d736a51020d9af123e082712dbd1.tar.gz |
Adopted some of the patches of Jon Nelson. Fixes the non blocking
behaviour.
Diffstat (limited to 'lib/gnutls_mem.c')
-rw-r--r-- | lib/gnutls_mem.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gnutls_mem.c b/lib/gnutls_mem.c index 4f58c76f5b..6401684784 100644 --- a/lib/gnutls_mem.c +++ b/lib/gnutls_mem.c @@ -199,7 +199,7 @@ char *gnutls_strdup(const char *s) if (ret == NULL) return ret; - strcpy(ret, s); + strcpy(ret, s); /* Flawfinder: ignore */ return ret; } |