Replace bzero() with memset()

This commit is contained in:
Ronnie Sahlberg
2011-01-03 15:35:36 +11:00
parent 77f1440b65
commit 9ddce8dc24
9 changed files with 30 additions and 30 deletions

View File

@@ -412,7 +412,7 @@ int main(int argc _U_, char *argv[] _U_)
printf("iscsi client\n");
bzero(&clnt, sizeof(clnt));
memset(&clnt, 0, sizeof(clnt));
iscsi = iscsi_create_context("iqn.2002-10.com.ronnie:client");
if (iscsi == NULL) {