From c63c1683414c044a16722e9f1e738dd6ea63ec69 Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Sat, 2 Oct 2021 18:40:19 -0400 Subject: Log IRC to standard output with -v So that it can actually be logged to a file separate from any errors or status messages. Also make sure only LF is used when logging. --- bounce.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bounce.c') diff --git a/bounce.c b/bounce.c index 515f7d7..ef256bc 100644 --- a/bounce.c +++ b/bounce.c @@ -289,7 +289,7 @@ int main(int argc, char *argv[]) { break; case 's': ringSize = parseSize(optarg); break; case 't': trust = optarg; break; case 'u': user = optarg; - break; case 'v': verbose = true; + break; case 'v': verbose = true; setlinebuf(stdout); break; case 'w': pass = optarg; break; case 'x': hashPass(); return EX_OK; break; case 'y': clientAway = optarg; -- cgit 1.4.1