From abf5f52c11059d58c30f67ee375e415117c940e7 Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Sun, 17 Sep 2000 01:56:15 +0000 Subject: [PATCH] Fix typos. Organization: Straylight/Edgeware From: ian --- INSTALL | 2 +- README | 2 +- README.html | 4 ++-- src/adns.h | 18 +++++++++--------- 4 files changed, 13 insertions(+), 13 deletions(-) diff --git a/INSTALL b/INSTALL index 4c0ae67..be66b7b 100644 --- a/INSTALL +++ b/INSTALL @@ -33,7 +33,7 @@ and appear to install and run correctly. Notes/known problems: [1] IRIX 6.5 inet_ntoa seems to break with GCC. [2] The SGI IRIX compiler produces many spurious warnings. - [3] Dynamically linked, needs some help to find libadns.so.0.1. + [3] Dynamically linked, needs some help to find libadns.so.1.0. The following platforms are known to be deficient and will not work: Solaris 2.5 Lacks vsnprintf - install glibc ? diff --git a/README b/README index 836db7a..b812766 100644 --- a/README +++ b/README @@ -149,7 +149,7 @@ References 6. http://www.chiark.greenend.org.uk/~ian/adns/adns.h.txt 7. http://www.chiark.greenend.org.uk/~ian/adns/adnsresfilter.txt 8. ftp://ftp.chiark.greenend.org.uk/users/ian/adns/ - 9. http://www.chiark.greenend.org.uk/~/ian/adns/ftp/ + 9. http://www.chiark.greenend.org.uk/~ian/adns/ftp/ 10. http://www.chiark.greenend.org.uk/ucgi/~ijackson/cvsweb/adns/ 11. http://www.gnu.org/ 12. http://www.gnu.org/order/ftp.html diff --git a/README.html b/README.html index 5feab38..5b8f2f5 100644 --- a/README.html +++ b/README.html @@ -16,7 +16,7 @@ library and utilities. - +

@@ -144,7 +144,7 @@ are: message for adnshost (currently there is no manual, sorry).

  • All versions released so far are also available via anonymous - FTP and HTTP, + FTP and HTTP,
  • A mirror of my CVS repository is available via rsync from rsync.chiark.greenend.org.uk::ftp/users/ian/cvs-pub/adns (use FTP first to find your way around), or via diff --git a/src/adns.h b/src/adns.h index 0223053..ae84974 100644 --- a/src/adns.h +++ b/src/adns.h @@ -51,7 +51,7 @@ * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * * - * $Id: adns.h,v 1.82 2000/09/17 01:52:39 ian Exp $ + * $Id: adns.h,v 1.83 2000/09/17 01:56:18 ian Exp $ */ #ifndef ADNS_H_INCLUDED @@ -186,20 +186,20 @@ typedef enum { * * adns will reject local parts containing control characters (byte * values 0-31, 127-159, and 255) - these appear to be legal according - * to RFC822 but are clearly a bad idea. RFC1035 syntax does not make - * any distinction between a single RFC822 quoted-string containing - * full stops, and a series of quoted-strings separated by full stops; - * adns will return anything that isn't all valid atoms as a single - * quoted-string. RFC822 does not allow high-bit-set characters at - * all, but adns does allow them in local-parts, treating them as - * needing quoting. + * to RFC822 (at least 0-127) but are clearly a bad idea. RFC1035 + * syntax does not make any distinction between a single RFC822 + * quoted-string containing full stops, and a series of quoted-strings + * separated by full stops; adns will return anything that isn't all + * valid atoms as a single quoted-string. RFC822 does not allow + * high-bit-set characters at all, but adns does allow them in + * local-parts, treating them as needing quoting. * * If you ask for the domain with _raw then _no_ checking is done * (even on the host part, regardless of adns_qf_quoteok_anshost), and * you just get the domain name in master file format. * * If no mailbox is supplied the returned string will be `.' in either - * caswe. + * case. */ typedef enum { -- [mdw]