Module Name: src Committed By: kre Date: Wed May 3 04:13:53 UTC 2017
Modified Files: src/bin/sh: input.c input.h Log Message: Fix idiot typos in previous (this is not the advertised :next commit") Same typo - two different places. Ugh! To generate a diff of this commit: cvs rdiff -u -r1.53 -r1.54 src/bin/sh/input.c cvs rdiff -u -r1.16 -r1.17 src/bin/sh/input.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/bin/sh/input.c diff -u src/bin/sh/input.c:1.53 src/bin/sh/input.c:1.54 --- src/bin/sh/input.c:1.53 Wed May 3 04:11:30 2017 +++ src/bin/sh/input.c Wed May 3 04:13:53 2017 @@ -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; Index: src/bin/sh/input.h diff -u src/bin/sh/input.h:1.16 src/bin/sh/input.h:1.17 --- src/bin/sh/input.h:1.16 Wed May 3 04:11:30 2017 +++ src/bin/sh/input.h Wed May 3 04:13:53 2017 @@ -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 cha 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);