]> granicus.if.org Git - sudo/commitdiff
fixed a spelling error
authorTodd C. Miller <Todd.Miller@courtesan.com>
Sun, 3 Sep 1995 17:19:51 +0000 (17:19 +0000)
committerTodd C. Miller <Todd.Miller@courtesan.com>
Sun, 3 Sep 1995 17:19:51 +0000 (17:19 +0000)
parse.lex
parse.yacc

index 088a7e0e4a9c9c8090c21da088e1985dd6064db1..f609770fcff2cb75ac45ac8c04a2189897bd44c5 100644 (file)
--- a/parse.lex
+++ b/parse.lex
@@ -218,7 +218,7 @@ static void append() {
            yyerror("unable to allocate memory");
     }
 
-    /* Effeciently append the arg (with a leading space) */
+    /* Efficiently append the arg (with a leading space) */
     s = yylval.string + string_len;
     *s++ = ' ';
     (void) strcpy(s, yytext);
index 41cdab27335b41ea042e1ca393ed3938f7f51096..c3d6c249bd1e52b8de550517b555f48b02b1b6d0 100644 (file)
@@ -496,7 +496,7 @@ static char *dotcat(s1, s2)
     if (s == NULL)
        yyerror("unable to allocate memory");
 
-    /* cat s1.s2 -> s effeciently */
+    /* cat s1.s2 -> s efficient */
     (void) strcpy(s, s1);
     *(s + len1) = '.';
     (void) strcpy(s + len1 + 1, s2);