Disable output by default on Windows builds.

git-svn-id: https://proxytunnel.svn.sourceforge.net/svnroot/proxytunnel/trunk/proxytunnel@173 bc163920-b10d-0410-b2c5-a5491ca2ceef
This commit is contained in:
Dag Wieers 2008-01-19 03:40:52 +00:00
parent 579b6c509d
commit 546519a361

View file

@ -135,7 +135,12 @@ int cmdline_parser( int argc, char * const *argv, struct gengetopt_args_info *ar
args_info->verbose_given = 0;
args_info->ntlm_given = 0;
args_info->inetd_given = 0;
/* For Windows+Putty we cannot allow output by default. -- Dag */
#ifdef CYGWIN
args_info->quiet_given = 1;
#else
args_info->quiet_given = 0;
#endif
args_info->header_given = 0;
args_info->domain_given = 0;
args_info->encrypt_given = 0;