From: David Levine Date: Fri, 4 Jan 2013 04:32:28 +0000 (-0600) Subject: Removed discard() call in post(8). It was only used with -debug X-Git-Url: https://diplodocus.org/git/nmh/commitdiff_plain/51cc0e72151fcfe46271dda33398a3a6ce1b41b9?hp=6195e9e4898927e2739af4cb168aa198ddde39ef Removed discard() call in post(8). It was only used with -debug and seemed to serve no useful purpose any more. Its comment said that it was needed to help the loader. --- diff --git a/uip/post.c b/uip/post.c index ffc9de80..c81f0fcc 100644 --- a/uip/post.c +++ b/uip/post.c @@ -558,7 +558,7 @@ main (int argc, char **argv) start_headers (); if (debug) { verbose++; - discard (out = stdout); /* XXX: reference discard() to help loader */ + out = stdout; } else { if (whomsw) { if ((out = fopen ("/dev/null", "w")) == NULL)