1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
|
Description: Fix spelling errors
Author: Roberto Lumbreras <rover@debian.org>
Index: proxy-suite-1.9.2.4/doc/Makefile.in
===================================================================
--- proxy-suite-1.9.2.4.orig/doc/Makefile.in 2010-12-26 22:51:11.983171087 +0100
+++ proxy-suite-1.9.2.4/doc/Makefile.in 2011-06-05 21:09:02.000000000 +0200
@@ -71,19 +71,19 @@
$(FTP_PS): $(FTP_SGML)
@if [ -n "$(SGML2LATEX)" ] ; then \
$(SGML2LATEX) --output=ps $< ; \
- else echo "$@: SGML2LATEX not avaliable" ; \
+ else echo "$@: SGML2LATEX not available" ; \
fi
$(FTP_PDF): $(FTP_PS)
@if [ -n "$(PS2PDF)" ] && [ -f "$<" ] ; then \
$(PS2PDF) $< $@ ; \
- else echo "$@: PS2PDF not avaliable" ; \
+ else echo "$@: PS2PDF not available" ; \
fi
$(FTP_HTML): $(FTP_SGML)
@if [ -n "$(SGML2HTML)" ] ; then \
$(SGML2HTML) $< ; \
- else echo "$@: SGML2HTML not avaliable" ; \
+ else echo "$@: SGML2HTML not available" ; \
fi
Index: proxy-suite-1.9.2.4/ftp-proxy/NEWS
===================================================================
--- proxy-suite-1.9.2.4.orig/ftp-proxy/NEWS 2010-12-26 22:51:12.003169444 +0100
+++ proxy-suite-1.9.2.4/ftp-proxy/NEWS 2011-06-05 21:09:02.000000000 +0200
@@ -35,7 +35,7 @@
-----------------------------------
- improved user-auth to allow auth using ldap-bind as well
- improved parsing of the ftp USER command magic strings
- to allow email-adresses as username if UseMagicChar is @.
+ to allow email-addresses as username if UseMagicChar is @.
- removed broken ABOR on error while srv_data xfer still runs
- fixed to use hls->retr instead of a static retry counter
- applied OpenBSD pf-nat transparent proxy support patch
Index: proxy-suite-1.9.2.4/ftp-proxy/ftp-proxy.8.in
===================================================================
--- proxy-suite-1.9.2.4.orig/ftp-proxy/ftp-proxy.8.in 2010-12-26 22:51:12.011169345 +0100
+++ proxy-suite-1.9.2.4/ftp-proxy/ftp-proxy.8.in 2011-06-05 21:09:02.000000000 +0200
@@ -165,7 +165,7 @@
.SH DIAGNOSTICS
The
.B \-v
-option is is only avaliable if enabled using the
+option is is only available if enabled using the
.B \-\-enable-debug
option when running the configure script - see also the
.B INSTALL
Index: proxy-suite-1.9.2.4/ftp-proxy/rc.script.in
===================================================================
--- proxy-suite-1.9.2.4.orig/ftp-proxy/rc.script.in 2010-12-26 22:51:12.019169527 +0100
+++ proxy-suite-1.9.2.4/ftp-proxy/rc.script.in 2011-06-05 21:09:02.000000000 +0200
@@ -442,7 +442,7 @@
mk_chroot || return 1
# if syslog is used, a log socket should
- # be avaliable as ${ServerRoot}/dev/log
+ # be available as ${ServerRoot}/dev/log
if [ -n "${LogDestination}" ] && \
[ "${LogDestination}" = "${LogDestination#/*}" ] && \
[ ! -S "${ServerRoot}/dev/log" ] ;
Index: proxy-suite-1.9.2.4/ftp-proxy/ftp-proxy.conf.5.in
===================================================================
--- proxy-suite-1.9.2.4.orig/ftp-proxy/ftp-proxy.conf.5.in 2010-12-26 22:51:12.031170219 +0100
+++ proxy-suite-1.9.2.4/ftp-proxy/ftp-proxy.conf.5.in 2011-06-06 07:05:55.196897527 +0200
@@ -143,7 +143,7 @@
.B yes, true,
or
.B on
-allows to use the proxy as transparent proxy for outgoing ftp.
+allows one to use the proxy as transparent proxy for outgoing ftp.
To get it working you also have to redirect client requests on
a gateway or firewall host (i.e. via ipchains) to the ftp-proxy.
It should only be activated with "trusted" users, like in an
@@ -310,7 +310,7 @@
directory is prefixed by the {crypt} scheme specification. Other
password schemes, i.e. MD5, are not supported at the moment.
.br
-Crypted passwords are only avaliable, if the proxy is compiled
+Crypted passwords are only available, if the proxy is compiled
with crypt support - see also
.B "--with-crypt"
compile time option in configure script.
@@ -728,10 +728,10 @@
followed by @/_-. or alphanumeric characters and ending with
an alphanumeric one.
.sp
-This matches the usual cases inclusive E-Mail adresses and
+This matches the usual cases inclusive E-Mail addresses and
"domain/user" names.
.sp
-If regex support is not avaliable, above default rule is still
+If regex support is not available, above default rule is still
used and the option ignored. See also
.B ValidCommands
option for regex encoding description.
|