Fix a busted comment.
authorEric S. Raymond <esr@thyrsus.com>
Fri, 20 Sep 2024 14:40:22 +0000 (10:40 -0400)
committerEric S. Raymond <esr@thyrsus.com>
Fri, 20 Sep 2024 14:40:22 +0000 (10:40 -0400)
misc.c

diff --git a/misc.c b/misc.c
index 14d0622541ac2805f5540110375d52cde89d1dc0..aa11786e70fdee47426883a992d827263c662d09 100644 (file)
--- a/misc.c
+++ b/misc.c
@@ -495,8 +495,8 @@ static void tokenize(char *raw, command_t *cmd) {
        memset(&cmd->word[1].raw, '\0', sizeof(cmd->word[1].raw));
 
        /* Bound prefix on the %s would be needed to prevent buffer
-        * overflow.  but we shortstop this more simply by making each
-        * raw-input buffer as int as the entire input buffer. */
+        * overflow. We shortstop this more simply by making each
+        * raw-input buffer as long as the entire input buffer. */
        sscanf(raw, "%s%s", cmd->word[0].raw, cmd->word[1].raw);
 
        /* (ESR) In oldstyle mode, simulate the uppercasing and truncating