mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
Make style match the surrounding style. Use memset() instead of bzero()
because it's standard (bah, show me a real system without bzero()...) Noted by: bde
This commit is contained in:
parent
d61dfe72b6
commit
63ec88f55f
1 changed files with 1 additions and 1 deletions
|
|
@ -1862,7 +1862,7 @@ main (int argc, char **argv)
|
|||
insertkey (key);
|
||||
key = (struct keyfield *)
|
||||
xmalloc (sizeof (struct keyfield));
|
||||
bzero(key, sizeof(*key));
|
||||
memset (key, 0, sizeof (struct keyfield));
|
||||
key->eword = -1;
|
||||
key->ignore = NULL;
|
||||
key->translate = NULL;
|
||||
|
|
|
|||
Loading…
Reference in a new issue