]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Many typos fixed
authorBenjamin Kerensa <bkerensa@ubuntu.com>
Mon, 11 Mar 2013 00:30:26 +0000 (17:30 -0700)
committerBenjamin Kerensa <bkerensa@ubuntu.com>
Mon, 11 Mar 2013 00:30:26 +0000 (17:30 -0700)
CONTRIBUTORS
helpers/external_acl/eDirectory_userip/ext_edirectory_userip_acl.cc
lib/smblib/smblib-util.c
snmplib/snmp_msg.c
src/esi/Esi.cc
src/stmem.cc

index 1a14cff4b8a8810f5bfc2464ddccdd19cfe9119c..ed6edcce0505a25971be94ebe8d858a032041540 100644 (file)
@@ -195,3 +195,4 @@ and ideas to make this software available.
     benno@jeamland.net
     fancyrabbit <fancyrabbit@gmail.com>
     vollkommen <vollkommen@gmx.net>
+    Benjamin Kerensa <bkerensa@ubuntu.com>
index f3c317c3682b082e7810b119c44747f34f5e7e7a..a38cc044b6d1a5b71015e5f860b09f9693f87533 100644 (file)
@@ -977,7 +977,7 @@ ConvertIP(edui_ldap_t *l, char *ip)
                     if (bufb[i] == ':')
                         ++j;
                 }
-                --j;                                                           /* Preceeding "::" doesn't count */
+                --j;                                                           /* Preceding "::" doesn't count */
                 t = 8 - (strlen(l->search_ip) / 4) - j;                        /* Remainder */
                 if (t > 0) {
                     for (i = 0; i < t; ++i)
index 04ac0c591d2e1ea0fa3caad40deb7f73dd7bcc2e..893ab7d77c458a62d65b8f0d3db4608390a2e714 100644 (file)
@@ -767,7 +767,7 @@ int SMB_Get_Last_SMB_Err()
 
 static const char *SMBlib_Error_Messages[] = {
 
-    "Request completed sucessfully.",
+    "Request completed successfully.",
     "Server returned a non-zero SMB Error Class and Code.",
     "A lower layer protocol error occurred.",
     "Function not yet implemented.",
index dca49216878711e4c7685f4ce1c55ecb1350b7d3..623c81090f537541546ea00f260db489a2dce819 100644 (file)
@@ -252,23 +252,23 @@ snmp_msg_Decode(u_char * Packet, int *PacketLenP,
 
     bufp = asn_parse_header(Packet, PacketLenP, &type);
     if (bufp == NULL) {
-        snmplib_debug(4, "snmp_msg_Decode:Error decoding SNMP Messsage Header (Header)!\n");
+        snmplib_debug(4, "snmp_msg_Decode:Error decoding SNMP Message Header (Header)!\n");
         ASN_PARSE_ERROR(NULL);
     }
     if (type != (ASN_SEQUENCE | ASN_CONSTRUCTOR)) {
-        snmplib_debug(4, "snmp_msg_Decode:Error decoding SNMP Messsage Header (Header)!\n");
+        snmplib_debug(4, "snmp_msg_Decode:Error decoding SNMP Message Header (Header)!\n");
         ASN_PARSE_ERROR(NULL);
     }
     bufp = asn_parse_int(bufp, PacketLenP,
                          &type,
                          (int *) Version, sizeof(*Version));
     if (bufp == NULL) {
-        snmplib_debug(4, "snmp_msg_Decode:Error decoding SNMP Messsage Header (Version)!\n");
+        snmplib_debug(4, "snmp_msg_Decode:Error decoding SNMP Message Header (Version)!\n");
         ASN_PARSE_ERROR(NULL);
     }
     bufp = asn_parse_string(bufp, PacketLenP, &type, Community, CommLenP);
     if (bufp == NULL) {
-        snmplib_debug(4, "snmp_msg_Decode:Error decoding SNMP Messsage Header (Community)!\n");
+        snmplib_debug(4, "snmp_msg_Decode:Error decoding SNMP Message Header (Community)!\n");
         ASN_PARSE_ERROR(NULL);
     }
     Community[*CommLenP] = '\0';
index 60c2344750bbb81281f6f1be308b30aaaaf3a02e..7e54b1c0514bf24199544679c9373a6cfc88cffe 100644 (file)
@@ -1323,7 +1323,7 @@ ESIContext::process ()
     /* parsing:
      * read through buffered, skipping plain text, and skipping any
      * <...> entry that is not an <esi: entry.
-     * when it's found, hand an esiLiteral of the preceeding data to our current
+     * when it's found, hand an esiLiteral of the preceding data to our current
      * context
      */
 
index c00aa436ba6ab585faeee5a3e9475fa28aa7f881..b87e28a101054358644f9465406a60e72b1aaf33 100644 (file)
@@ -269,7 +269,7 @@ mem_hdr::copy(StoreIOBuffer const &target) const
         debugs(19, DBG_IMPORTANT, "memCopy: could not find start of " << target.range() <<
                " in memory.");
         debugDump();
-        fatal("Squid has attempted to read data from memory that is not present. This is an indication of of (pre-3.0) code that hasn't been updated to deal with sparse objects in memory. Squid should coredump.allowing to review the cause. Immediately preceeding this message is a dump of the available data in the format [start,end). The [ means from the value, the ) means up to the value. I.e. [1,5) means that there are 4 bytes of data, at offsets 1,2,3,4.\n");
+        fatal("Squid has attempted to read data from memory that is not present. This is an indication of of (pre-3.0) code that hasn't been updated to deal with sparse objects in memory. Squid should coredump.allowing to review the cause. Immediately preceding this message is a dump of the available data in the format [start,end). The [ means from the value, the ) means up to the value. I.e. [1,5) means that there are 4 bytes of data, at offsets 1,2,3,4.\n");
         return 0;
     }