summaryrefslogtreecommitdiff
path: root/lib/ZParseNot.c
diff options
context:
space:
mode:
authorGravatar Richard Basch <probe@mit.edu>1993-11-19 10:22:56 +0000
committerGravatar Richard Basch <probe@mit.edu>1993-11-19 10:22:56 +0000
commit74c7c73a03385cc870cc0e3318f028683743e2b9 (patch)
tree06428728a0e4066c8b8535560d1462ca8f04ead2 /lib/ZParseNot.c
parentf87161de62e8755138143b602a7c7fe1005b3ecc (diff)
Changed bzero to memset [ANSI]
Diffstat (limited to 'lib/ZParseNot.c')
-rw-r--r--lib/ZParseNot.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ZParseNot.c b/lib/ZParseNot.c
index 3bed416..6c47dc7 100644
--- a/lib/ZParseNot.c
+++ b/lib/ZParseNot.c
@@ -99,7 +99,7 @@ Code_t ZParseNotice(buffer, len, notice)
#define BAD goto badpkt
#endif
- _BZERO((char *)notice, sizeof(ZNotice_t));
+ (void) memset((char *)notice, 0, sizeof(ZNotice_t));
ptr = buffer;
end = buffer+len;