summaryrefslogtreecommitdiff
path: root/lib/ZRetSubs.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ZRetSubs.c')
-rw-r--r--lib/ZRetSubs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ZRetSubs.c b/lib/ZRetSubs.c
index 05887ad..dfe9e27 100644
--- a/lib/ZRetSubs.c
+++ b/lib/ZRetSubs.c
@@ -38,7 +38,7 @@ Code_t ZRetrieveSubscriptions(port,nsubs)
sizeof(u_short))) != ZERR_NONE)
return (retval);
- (void) bzero((char *)&notice, sizeof(notice));
+ (void) _BZERO((char *)&notice, sizeof(notice));
notice.z_message = asciiport;
notice.z_message_len = strlen(asciiport)+1;
notice.z_opcode = CLIENT_GIMMESUBS;
@@ -51,7 +51,7 @@ Code_t ZRetrieveDefaultSubscriptions(nsubs)
{
ZNotice_t notice;
- (void) bzero((char *)&notice, sizeof(notice));
+ (void) _BZERO((char *)&notice, sizeof(notice));
notice.z_message = (char *) 0;
notice.z_message_len = 0;
notice.z_opcode = CLIENT_GIMMEDEFS;