From 9e4f9b37a125cba1724251519a0ad987ec48efad Mon Sep 17 00:00:00 2001 From: kre Date: Wed, 3 May 2017 04:13:53 +0000 Subject: [PATCH] Fix idiot typos in previous (this is not the advertised :next commit") Same typo - two different places. Ugh! --- bin/sh/input.c | 6 +++--- bin/sh/input.h | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bin/sh/input.c b/bin/sh/input.c index 4e15b2667e5f..0558693c33a6 100644 --- a/bin/sh/input.c +++ b/bin/sh/input.c @@ -1,4 +1,4 @@ -/* $NetBSD: input.c,v 1.53 2017/05/03 04:11:30 kre Exp $ */ +/* $NetBSD: input.c,v 1.54 2017/05/03 04:13:53 kre Exp $ */ /*- * Copyright (c) 1991, 1993 @@ -37,7 +37,7 @@ #if 0 static char sccsid[] = "@(#)input.c 8.3 (Berkeley) 6/9/95"; #else -__RCSID("$NetBSD: input.c,v 1.53 2017/05/03 04:11:30 kre Exp $"); +__RCSID("$NetBSD: input.c,v 1.54 2017/05/03 04:13:53 kre Exp $"); #endif #endif /* not lint */ @@ -341,7 +341,7 @@ pungetc(void) * We handle aliases this way. */ void -pushstring(char *s, int len, strust alias *ap) +pushstring(char *s, int len, struct alias *ap) { struct strpush *sp; diff --git a/bin/sh/input.h b/bin/sh/input.h index 07bc9726ce5a..8e323d81b413 100644 --- a/bin/sh/input.h +++ b/bin/sh/input.h @@ -1,4 +1,4 @@ -/* $NetBSD: input.h,v 1.16 2017/05/03 04:11:30 kre Exp $ */ +/* $NetBSD: input.h,v 1.17 2017/05/03 04:13:53 kre Exp $ */ /*- * Copyright (c) 1991, 1993 @@ -46,7 +46,7 @@ extern int parsenleft; /* number of characters left in input buffer */ extern char *parsenextc; /* next character in input buffer */ extern int init_editline; /* 0 == not setup, 1 == OK, -1 == failed */ -strust alias; +struct alias; char *pfgets(char *, int); int pgetc(void);