Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/bin/sh Fix typo in a debug message.



details:   https://anonhg.NetBSD.org/src/rev/c9ce560e3be5
branches:  trunk
changeset: 376604:c9ce560e3be5
user:      msaitoh <msaitoh%NetBSD.org@localhost>
date:      Sat Jun 24 05:17:02 2023 +0000

description:
Fix typo in a debug message.

diffstat:

 bin/sh/eval.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 1ffc18676126 -r c9ce560e3be5 bin/sh/eval.c
--- a/bin/sh/eval.c     Sat Jun 24 05:12:03 2023 +0000
+++ b/bin/sh/eval.c     Sat Jun 24 05:17:02 2023 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: eval.c,v 1.189 2023/04/07 10:34:13 kre Exp $   */
+/*     $NetBSD: eval.c,v 1.190 2023/06/24 05:17:02 msaitoh Exp $       */
 
 /*-
  * Copyright (c) 1993
@@ -37,7 +37,7 @@
 #if 0
 static char sccsid[] = "@(#)eval.c     8.9 (Berkeley) 6/8/95";
 #else
-__RCSID("$NetBSD: eval.c,v 1.189 2023/04/07 10:34:13 kre Exp $");
+__RCSID("$NetBSD: eval.c,v 1.190 2023/06/24 05:17:02 msaitoh Exp $");
 #endif
 #endif /* not lint */
 
@@ -1002,7 +1002,7 @@ evalcommand(union node *cmd, int flgs, s
                 */
                cmdentry.cmdtype = CMDBUILTIN;
                cmdentry.u.bltin = bltincmd;
-               VTRACE(DBG_CMDS, ("No command name, assume \"comamnd\"\n"));
+               VTRACE(DBG_CMDS, ("No command name, assume \"command\"\n"));
        } else {
                static const char PATH[] = "PATH=";
 



Home | Main Index | Thread Index | Old Index