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/30d5bb3d548a
branches:  trunk
changeset: 823690:30d5bb3d548a
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 4bdf88e12003 -r 30d5bb3d548a 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 4bdf88e12003 -r 30d5bb3d548a 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