diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2000-11-21 19:43:11 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2000-11-21 19:43:11 +0000 |
commit | c7fb32bd19c5253ffe1b3d66705c162b37d6e833 (patch) | |
tree | 88692ba273408bc2c7e7f4cd44f6c69620d542a6 /lib/libc | |
parent | 900786e6823155e8caf39c8fc128f05c3c55a8a0 (diff) |
Remove needless memset() from last commit.
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/gen/auth_subr.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/libc/gen/auth_subr.c b/lib/libc/gen/auth_subr.c index 39b0a2bf58f..647c897ea1b 100644 --- a/lib/libc/gen/auth_subr.c +++ b/lib/libc/gen/auth_subr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: auth_subr.c,v 1.2 2000/11/21 04:17:44 millert Exp $ */ +/* $OpenBSD: auth_subr.c,v 1.3 2000/11/21 19:43:10 millert Exp $ */ /*- * Copyright (c) 1995,1996,1997 Berkeley Software Design, Inc. @@ -749,7 +749,6 @@ auth_call(auth_session_t *as, char *path, ...) char *argv[64]; /* 64 args should more than enough */ #define Nargc (sizeof(argv)/sizeof(argv[0])) - memset(&(as->ap0), 0, sizeof(as->ap0)); va_start(as->ap0, path); argc = 0; |