From 09e7abbd0d843545e591e546719259d4fc92cf72 Mon Sep 17 00:00:00 2001 From: Markus Armbruster Date: Fri, 24 Aug 2007 17:05:18 +0000 Subject: [PATCH] (output): Remove unused parameter eol. Caller changed. --- src/client/servcmd.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/client/servcmd.c b/src/client/servcmd.c index 34cc352f..57e006bc 100644 --- a/src/client/servcmd.c +++ b/src/client/servcmd.c @@ -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");