From bd7cb5195a43a8b3c6a30ce2499068fece71f9ac Mon Sep 17 00:00:00 2001 From: Jonas 'Sortie' Termansen Date: Wed, 7 Mar 2012 18:26:02 +0100 Subject: [PATCH] Removed debug string from mxsh(1). --- utils/mxsh.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/utils/mxsh.cpp b/utils/mxsh.cpp index be866610..85af6eda 100644 --- a/utils/mxsh.cpp +++ b/utils/mxsh.cpp @@ -143,7 +143,6 @@ readcmd: { close(1); int flags = O_CREAT | O_WRONLY | O_APPEND; - fprintf(stderr, "execmode = %s\n", execmode); if ( strcmp(execmode, ">") == 0 ) { flags |= O_TRUNC; } if ( open(outputfile, flags, 0666) < 0 ) {