diff options
author | paul <paul> | 2003-10-22 02:41:52 +0000 |
---|---|---|
committer | paul <paul> | 2003-10-22 02:41:52 +0000 |
commit | d1724b6555510c22d2df55a9245fe4e6f1b08922 (patch) | |
tree | 3c72ac425f323f94fe57f8310011fc1f8c9273b5 | |
parent | dc7a2bf1c831f6bcea5945f7fe2eb2ba111e4224 (diff) |
2003-10-22 Paul Jakma <paul@dishone.st>
* lib/regex.c: bzero -> memset
* zebra/ioctl.c: ditto. bzero is not portable.
-rw-r--r-- | lib/regex.c | 6 | ||||
-rw-r--r-- | zebra/ioctl.c | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/lib/regex.c b/lib/regex.c index 8c7acd54..2eb7c118 100644 --- a/lib/regex.c +++ b/lib/regex.c @@ -184,7 +184,7 @@ init_syntax_once () if (done) return; - bzero (re_syntax_table, sizeof re_syntax_table); + memset (re_syntax_table, 0, sizeof re_syntax_table); for (c = 'a'; c <= 'z'; c++) re_syntax_table[c] = Sword; @@ -2194,7 +2194,7 @@ regex_compile (pattern, size, syntax, bufp) BUF_PUSH ((1 << BYTEWIDTH) / BYTEWIDTH); /* Clear the whole map. */ - bzero (b, (1 << BYTEWIDTH) / BYTEWIDTH); + memset (b, 0, (1 << BYTEWIDTH) / BYTEWIDTH); /* charset_not matches newline according to a syntax bit. */ if ((re_opcode_t) b[-2] == charset_not @@ -3223,7 +3223,7 @@ re_compile_fastmap (bufp) assert (fastmap != NULL && p != NULL); INIT_FAIL_STACK (); - bzero (fastmap, 1 << BYTEWIDTH); /* Assume nothing's valid. */ + memset (fastmap, 0, 1 << BYTEWIDTH); /* Assume nothing's valid. */ bufp->fastmap_accurate = 1; /* It will be when we're done. */ bufp->can_be_null = 0; diff --git a/zebra/ioctl.c b/zebra/ioctl.c index 1a682e27..ff253be1 100644 --- a/zebra/ioctl.c +++ b/zebra/ioctl.c @@ -364,7 +364,7 @@ if_set_flags (struct interface *ifp, unsigned long flags) int ret; struct ifreq ifreq; - bzero(&ifreq, sizeof(struct ifreq)); + memset (&ifreq, 0, sizeof(struct ifreq)); ifreq_set_name (&ifreq, ifp); ifreq.ifr_flags = ifp->flags; @@ -387,7 +387,7 @@ if_unset_flags (struct interface *ifp, unsigned long flags) int ret; struct ifreq ifreq; - bzero(&ifreq, sizeof(struct ifreq)); + memset (&ifreq, 0, sizeof(struct ifreq)); ifreq_set_name (&ifreq, ifp); ifreq.ifr_flags = ifp->flags; |