fix typos.

This commit is contained in:
christos 2005-09-24 17:34:17 +00:00
parent dd40a9f6f6
commit b9301b48d0
2 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: cfparse.y,v 1.5 2005/09/24 14:40:59 christos Exp $ */
/* $NetBSD: cfparse.y,v 1.6 2005/09/24 17:34:17 christos Exp $ */
/* Id: cfparse.y,v 1.37.2.4 2005/05/10 09:45:45 manubsd Exp */
@ -295,7 +295,7 @@ privsep_stmt
| GROUP QUOTEDSTRING
{
struct group *gr, grres;
char buf[1024]
char buf[1024];
(void)getgrnam_r($2->v, &grres, buf, sizeof(buf), &gr);
if (gr == NULL) {

View File

@ -1,4 +1,4 @@
/* $NetBSD: isakmp_xauth.c,v 1.5 2005/09/24 14:40:59 christos Exp $ */
/* $NetBSD: isakmp_xauth.c,v 1.6 2005/09/24 17:34:17 christos Exp $ */
/* Id: isakmp_xauth.c,v 1.17.2.5 2005/05/20 07:31:09 manubsd Exp */
@ -693,7 +693,7 @@ xauth_login_system(usr, pwd)
struct passwd *pw, pwres;
char *cryptpwd;
char *syscryptpwd;
char buf;
char buf[1024];
#ifdef HAVE_SHADOW_H
struct spwd *spw;