]> git.pond.sub.org Git - empserver/commitdiff
(output): Remove unused parameter eol. Caller changed.
authorMarkus Armbruster <armbru@pond.sub.org>
Fri, 24 Aug 2007 17:05:18 +0000 (17:05 +0000)
committerMarkus Armbruster <armbru@pond.sub.org>
Fri, 24 Aug 2007 17:05:18 +0000 (17:05 +0000)
src/client/servcmd.c

index 34cc352fb7d3b668c8be628d8f87e8f170b5c6cd..57e006bca6e6dc516ea61fe252d222a2adf38f52 100644 (file)
@@ -63,7 +63,7 @@ static void prompt(FILE *auxfi);
 static void doredir(char *p);
 static void dopipe(char *p);
 static void doexecute(char *p, FILE *auxfi);
-static void output(int code, char *buf, FILE *auxfi, int eol);
+static void output(int code, char *buf, FILE *auxfi);
 static void screen(char *buf);
 
 void
@@ -135,7 +135,7 @@ servercmd(struct ioqueue *ioq, FILE *auxfi)
                *num_teles = '\0';
            break;
        default:
-           output(code, p, auxfi, eol);
+           output(code, p, auxfi);
            break;
        }
        if (eol)
@@ -287,11 +287,11 @@ doexecute(char *p, FILE *auxfi)
 }
 
 static void
-output(int code, char *buf, FILE *auxfi, int eol)
+output(int code, char *buf, FILE *auxfi)
 {
     switch (code) {
     case C_NOECHO:
-       /* not implemented; serve doesn't send it */
+       /* not implemented; server doesn't send it */
        break;
     case C_ABORT:
        printf("Aborted\n");