From 29a234364c594c1a96a73c98170375bf33943f83 Mon Sep 17 00:00:00 2001 From: "Todd T. Fries" Date: Sat, 10 Jan 2009 17:17:33 +0000 Subject: variable declaration before use, found by vax, no cookie --- usr.sbin/authpf/authpf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr.sbin/authpf/authpf.c b/usr.sbin/authpf/authpf.c index e95505ab70f..45f36acf733 100644 --- a/usr.sbin/authpf/authpf.c +++ b/usr.sbin/authpf/authpf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: authpf.c,v 1.110 2009/01/06 03:11:50 mcbride Exp $ */ +/* $OpenBSD: authpf.c,v 1.111 2009/01/10 17:17:32 todd Exp $ */ /* * Copyright (C) 1998 - 2007 Bob Beck (beck@openbsd.org). @@ -481,9 +481,9 @@ allowed_luser(struct passwd *pw) * "public" gateway, such as it is, so let * everyone use it. */ - lbuf = NULL; int gl_init = 0, ngroups = NGROUPS + 1; gid_t groups[NGROUPS + 1]; + lbuf = NULL; while ((buf = fgetln(f, &len))) { -- cgit v1.2.3