diff options
Diffstat (limited to 'utils/fakeauth.c')
-rw-r--r-- | utils/fakeauth.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/fakeauth.c b/utils/fakeauth.c index 590a421a..ba6a3eef 100644 --- a/utils/fakeauth.c +++ b/utils/fakeauth.c @@ -50,7 +50,7 @@ create_authhandle (struct authhandle **new) error_t err = ports_create_port (authhandle_portclass, auth_bucket, sizeof **new, new); if (! err) - bzero (&(*new)->euids, (void *) &(*new)[1] - (void *) &(*new)->euids); + memset (&(*new)->euids, 0, (void *)&(*new)[1] - (void *)&(*new)->euids); return err; } |