Smaller cometic changes lurking in my tree.

git-svn-id: https://proxytunnel.svn.sourceforge.net/svnroot/proxytunnel/trunk/proxytunnel@227 bc163920-b10d-0410-b2c5-a5491ca2ceef
This commit is contained in:
Dag Wieers 2008-03-04 14:04:39 +00:00
parent 519dafc165
commit 9a16770d07
3 changed files with 10 additions and 10 deletions

12
CHANGES
View file

@ -6,7 +6,7 @@ Changes to proxytunnel version 1.9.0 -- Sat Feb 23 22:03:10 CET 2008
- Updated SPEC file to RPMforge standards (Dag Wieers)
- Improved verbose output, easier for the eyes (Dag Wieers)
- Improved help output (Dag Wieers)
- Added basic authentication support for remote proxy
- Added basic authentication support for remote proxy (Mark)
- Removed custom environment variables, now use PROXYUSER, PROXYPASS (Dag Wieers)
- Replaced -U/--user and -S/--pass by -P/--proxyauth (Dag Wieers)
- Added remote proxy authentication (-R/--remproxyauth) (Dag Wieers)
@ -169,11 +169,11 @@ Changes to proxytunnel version 1.1.0 -- Mon Apr 22 22:58:05 CEST 2002
- Ported new features (like stand-alone mode) to CYGWIN and fixed some
bugs when running on CYGWIN. The cygwin version differs from the normal
proxytunnel in these issues:
- Syslog isn't used, messages in stand-alone mode are displayed
in the window where the proxytunnel proces runs.
- Proxytunnel doesn't fork into the background on cygwin, so it's
logging messages can be seen here, and it can easily be killed
using CTRL-C in the window.
- Syslog isn't used, messages in stand-alone mode are displayed
in the window where the proxytunnel proces runs.
- Proxytunnel doesn't fork into the background on cygwin, so it's
logging messages can be seen here, and it can easily be killed
using CTRL-C in the window.
- Added Makefile.cygwin for use on CYGWIN platform.

View file

@ -494,7 +494,7 @@ int cmdline_parser( int argc, char * const *argv, struct gengetopt_args_info *ar
args_info->proxyhost_given = 1;
args_info->proxyport_given = 1;
} else {
message( "parse_cmdline: couln't find your proxy hostname/ip (%s)\n", args_info->proxy_arg );
message( "parse_cmdline: could not find your proxy hostname/ip (%s)\n", args_info->proxy_arg );
missing_required_options++;
}
}
@ -517,7 +517,7 @@ int cmdline_parser( int argc, char * const *argv, struct gengetopt_args_info *ar
args_info->user_arg = args_info->proxyauth_arg;
args_info->user_given = 1;
} else {
message( "parse_cmdline: couln't find your proxy auth user/pass\n" );
message( "parse_cmdline: could not find your proxy auth user/pass\n" );
missing_required_options++;
}
}
@ -540,7 +540,7 @@ int cmdline_parser( int argc, char * const *argv, struct gengetopt_args_info *ar
args_info->remuser_arg = args_info->remproxyauth_arg;
args_info->remuser_given = 1;
} else {
message( "parse_cmdline: couln't find your proxy auth user/pass\n" );
message( "parse_cmdline: could not find your proxy auth user/pass\n" );
missing_required_options++;
}
}

View file

@ -44,7 +44,7 @@ Run from inetd. Default is off.
.TP
.B \-F STRING, \-\-passfile=STRING
The file containing Username & Password to send to HTTPS proxy for
authentification. This file uses the same format as .wgetrc, and so
authentication. This file uses the same format as .wgetrc, and so
can use the credentials in common with wget. This option can be used
to at least hide the password from anyone clever enough to use the
`ps' command.