summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorDavid Sommerseth <dazo@users.sourceforge.net>2009-09-26 12:56:35 +0200
committerDavid Sommerseth <dazo@users.sourceforge.net>2009-09-26 12:56:35 +0200
commitf90f8540d4fe98712a0b60ea4e304a69815d23c5 (patch)
treec6c8bd4c9f962ac8a8281c45a83518be732a7fb3 /common
parentd0170fa670768d19a71b028c94a4cbd7398185b1 (diff)
downloadeurephia-f90f8540d4fe98712a0b60ea4e304a69815d23c5.tar.gz
eurephia-f90f8540d4fe98712a0b60ea4e304a69815d23c5.tar.xz
eurephia-f90f8540d4fe98712a0b60ea4e304a69815d23c5.zip
Moved from bzero() to memset()
Diffstat (limited to 'common')
-rw-r--r--common/certinfo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/certinfo.c b/common/certinfo.c
index 1a7d532..f63b783 100644
--- a/common/certinfo.c
+++ b/common/certinfo.c
@@ -61,7 +61,7 @@ certinfo *parse_tlsid(const char *input) {
return NULL;
ret = (certinfo *) malloc_nullsafe(NULL, sizeof(certinfo)+2);
- bzero(&tmp, 130);
+ memset(&tmp, 0, 130);
mainp = strdup(input);
origptr = mainp;