diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2005-06-26 16:39:15 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2005-06-26 16:39:15 +0000 |
commit | e483bc9d7b9cf9cfc7c32103d055a8132da415ff (patch) | |
tree | 8f62f309675bc25c8d8fb39130aed9a445395e43 /lib/libc/gen | |
parent | 8ee52398fd9a47ceb0a33912089ac1affeff321e (diff) |
add missing va_end(); Andrey Matveev
Diffstat (limited to 'lib/libc/gen')
-rw-r--r-- | lib/libc/gen/authenticate.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/gen/authenticate.c b/lib/libc/gen/authenticate.c index c4c236de3d5..e78754889a5 100644 --- a/lib/libc/gen/authenticate.c +++ b/lib/libc/gen/authenticate.c @@ -1,4 +1,4 @@ -/* $OpenBSD: authenticate.c,v 1.13 2002/10/15 20:16:08 millert Exp $ */ +/* $OpenBSD: authenticate.c,v 1.14 2005/06/26 16:39:14 millert Exp $ */ /*- * Copyright (c) 1997 Berkeley Software Design, Inc. All rights reserved. @@ -490,5 +490,6 @@ auth_verify(auth_session_t *as, char *style, char *name, ...) auth_set_va_list(as, ap); auth_call(as, path, auth_getitem(as, AUTHV_STYLE), "-s", auth_getitem(as, AUTHV_SERVICE), name, (char *)NULL); + va_end(ap); return (as); } |