Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/bin/sh Fix idiot typos in previous (this is not the advertis...
details: https://anonhg.NetBSD.org/src/rev/f9b5090946b8
branches: trunk
changeset: 353389:f9b5090946b8
user: kre <kre%NetBSD.org@localhost>
date: Wed May 03 04:13:53 2017 +0000
description:
Fix idiot typos in previous (this is not the advertised :next commit")
Same typo - two different places. Ugh!
diffstat:
bin/sh/input.c | 6 +++---
bin/sh/input.h | 4 ++--
2 files changed, 5 insertions(+), 5 deletions(-)
diffs (45 lines):
diff -r 6a07d7a29a61 -r f9b5090946b8 bin/sh/input.c
--- a/bin/sh/input.c Wed May 03 04:11:30 2017 +0000
+++ b/bin/sh/input.c Wed May 03 04:13:53 2017 +0000
@@ -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 @@
* 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 -r 6a07d7a29a61 -r f9b5090946b8 bin/sh/input.h
--- a/bin/sh/input.h Wed May 03 04:11:30 2017 +0000
+++ b/bin/sh/input.h Wed May 03 04:13:53 2017 +0000
@@ -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 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);
Home |
Main Index |
Thread Index |
Old Index