mirror of
https://github.com/proxytunnel/proxytunnel.git
synced 2026-01-23 02:34:59 +00:00
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:
parent
579b6c509d
commit
546519a361
1 changed files with 5 additions and 0 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue