From 9398a4081b5ed14655836c6ad72c3f7b0ebb01dc Mon Sep 17 00:00:00 2001 From: "tim.schubert@tu-bs.de" Date: Sat, 29 Oct 2016 23:39:30 +0200 Subject: [PATCH] Do away with ZORK. --- netcalc.c | 1 - 1 file changed, 1 deletion(-) diff --git a/netcalc.c b/netcalc.c index dda823f..5a59923 100644 --- a/netcalc.c +++ b/netcalc.c @@ -253,7 +253,6 @@ int client() if (status == -1) { report_error(buf, BUFLEN, "parse: failed to parse"); } else if (status == -2) { - printf("ZORK\n"); sprintf(buf, "%u%c%s", num1, '+', "0"); } else { sprintf(buf, "%u%c%u", num1, op, num2);