Heimdal: spelling fixes (underun prefered relase encyption confunder)
authorMichael Tokarev <mjt@tls.msk.ru>
Mon, 16 Oct 2023 15:26:31 +0000 (16:26 +0100)
committerMichael Tokarev <mjt@tls.msk.ru>
Mon, 16 Oct 2023 15:26:31 +0000 (16:26 +0100)
Gbp-Pq: Name heimdal-spelling.patch

13 files changed:
third_party/heimdal/lib/asn1/asn1_err.et
third_party/heimdal/lib/asn1/asn1_print.c
third_party/heimdal/lib/base/heimbase.c
third_party/heimdal/lib/gssapi/spnego/accept_sec_context.c
third_party/heimdal/lib/hx509/cert.c
third_party/heimdal/lib/hx509/hx509_err.et
third_party/heimdal/lib/krb5/crypto.c
third_party/heimdal/lib/sqlite/sqlite3.c
third_party/heimdal/po/heim_com_err569856/de.po
third_party/heimdal/po/heim_com_err569856/heim_com_err569856.pot
third_party/heimdal/po/heimdal_krb5/de.po
third_party/heimdal/po/heimdal_krb5/heimdal_krb5.pot
third_party/heimdal/po/heimdal_krb5/sv_SE.po

index ac7a9ebaa527995d3bb63dc9d960296bf9624628..dc08a86cf30c011e07350fd66e141b51d59a532b 100644 (file)
@@ -23,7 +23,7 @@ error_code MIN_CONSTRAINT,    "ASN.1 too few elements"
 error_code MAX_CONSTRAINT,     "ASN.1 too many elements"
 error_code EXACT_CONSTRAINT,   "ASN.1 wrong number of elements"
 error_code INDEF_OVERRUN,      "ASN.1 BER indefinte encoding overrun"
-error_code INDEF_UNDERRUN,     "ASN.1 BER indefinte encoding underun"
+error_code INDEF_UNDERRUN,     "ASN.1 BER indefinte encoding underrun"
 error_code GOT_BER,            "ASN.1 got BER encoded when expected DER"
 error_code INDEF_EXTRA_DATA,   "ASN.1 EoC tag contained data"
 end
index 9ef6ffd23a2244da31e11e906ab6ee8c538d2b32..9b598b78cdf64d8aa4c95ce89f0cff541c12c1b5 100644 (file)
@@ -566,7 +566,7 @@ dotype(unsigned char *buf, size_t len, char **argv, size_t *size)
                  "BER indefinte encoding overun", typename);
         case ASN1_INDEF_UNDERRUN:
             errx(1, "Could not decode and print data as type %s: "
-                 "BER indefinte encoding underun", typename);
+                 "BER indefinte encoding underrun", typename);
         case ASN1_GOT_BER:
             errx(1, "Could not decode and print data as type %s: "
                  "BER encoding when DER expected", typename);
index 4e9ea1b4b5f66d2d87b887955a7ce1a4b89845e9..05add641e019e9dba4efbc7e18231b5eaa429108 100644 (file)
@@ -701,7 +701,7 @@ heim_auto_release(heim_object_t ptr)
     }
 
     if (tls == NULL || (ar = tls->current) == NULL)
-       heim_abort("no auto relase pool in place, would leak");
+       heim_abort("no auto release pool in place, would leak");
 
     HEIMDAL_MUTEX_lock(&ar->pool_mutex);
     HEIM_TAILQ_INSERT_HEAD(&ar->pool, p, autorel);
index c4ac7455cf6ef859e64abeeca7d8c49131bf6cf9..7a211900fd3e2b24bf27f045d3c676f6c7afc49c 100644 (file)
@@ -747,7 +747,7 @@ acceptor_start
        HEIMDAL_MUTEX_unlock(&ctx->ctx_id_mutex);
        return gss_mg_set_error_string(GSS_C_NO_OID, GSS_S_NO_CONTEXT,
                                       *minor_status,
-                                      "SPNEGO acceptor didn't find a prefered mechanism");
+                                      "SPNEGO acceptor didn't find a preferred mechanism");
     }
 
     /*
index e7e2423c54dce8d1c5fd40f31e6145f4b9da7e3c..b4d03f31e5cfcf64bd14af7ca4b50e477a0f75cd 100644 (file)
@@ -1506,7 +1506,7 @@ _hx509_calculate_path(hx509_context context,
        if (path->len > max_depth) {
            hx509_cert_free(current);
            hx509_set_error_string(context, 0, HX509_PATH_TOO_LONG,
-                                  "Path too long while bulding "
+                                  "Path too long while building "
                                   "certificate chain");
            return HX509_PATH_TOO_LONG;
        }
index db81f5d294b0dd480b53616dadaf14618a0e4f5d..1eca18e043e18c95cb57be25501594e62f88df1b 100644 (file)
@@ -62,8 +62,8 @@ error_code SIG_INVALID_FORMAT, "Invalid format on signature"
 error_code OID_MISMATCH, "Mismatch between oids"
 error_code NO_PROMPTER, "No prompter function defined"
 error_code SIGNATURE_WITHOUT_SIGNER, "Signature requires signer, but none available"
-error_code RSA_PUBLIC_ENCRYPT, "RSA public encyption failed"
-error_code RSA_PRIVATE_ENCRYPT, "RSA private encyption failed"
+error_code RSA_PUBLIC_ENCRYPT, "RSA public encryption failed"
+error_code RSA_PRIVATE_ENCRYPT, "RSA private encryption failed"
 error_code RSA_PUBLIC_DECRYPT, "RSA public decryption failed"
 error_code RSA_PRIVATE_DECRYPT, "RSA private decryption failed"
 error_code ALGORITHM_BEST_BEFORE, "Algorithm has passed its best before date"
index ba7e132254a5f5d99d5221102a5a1fbcc5ab7948..501bd59d7a1088312afdc280d16e63b84c2626e9 100644 (file)
@@ -1226,7 +1226,7 @@ decrypt_internal_derived(krb5_context context,
     if (len < checksum_sz + et->confoundersize) {
        krb5_set_error_message(context, KRB5_BAD_MSIZE,
                               N_("Encrypted data shorter then "
-                                 "checksum + confunder", ""));
+                                 "checksum + confounder", ""));
        return KRB5_BAD_MSIZE;
     }
 
@@ -1301,7 +1301,7 @@ decrypt_internal_enc_then_cksum(krb5_context context,
     if (len < checksum_sz + et->confoundersize) {
        krb5_set_error_message(context, KRB5_BAD_MSIZE,
                               N_("Encrypted data shorter then "
-                                 "checksum + confunder", ""));
+                                 "checksum + confounder", ""));
        return KRB5_BAD_MSIZE;
     }
 
@@ -1383,7 +1383,7 @@ decrypt_internal(krb5_context context,
     if (len < checksum_sz + et->confoundersize) {
        krb5_set_error_message(context, KRB5_BAD_MSIZE,
                               N_("Encrypted data shorter then "
-                                 "checksum + confunder", ""));
+                                 "checksum + confounder", ""));
        return KRB5_BAD_MSIZE;
     }
 
@@ -1445,7 +1445,7 @@ decrypt_internal_special(krb5_context context,
     if (len < cksum_sz + et->confoundersize) {
        krb5_set_error_message(context, KRB5_BAD_MSIZE,
                               N_("Encrypted data shorter then "
-                                 "checksum + confunder", ""));
+                                 "checksum + confounder", ""));
        return KRB5_BAD_MSIZE;
     }
 
index de55858cb0fddf56fba148d1104ddd45f260c7b0..7aaed45e977635cc2a0c2edbdfdec972fbaf8293 100644 (file)
@@ -95906,7 +95906,7 @@ static int vdbeSorterFlushPMA(VdbeSorter *pSorter){
   ** the background thread from a sub-tasks previous turn is still running,
   ** skip it. If the first (pSorter->nTask-1) sub-tasks are all still busy,
   ** fall back to using the final sub-task. The first (pSorter->nTask-1)
-  ** sub-tasks are prefered as they use background threads - the final
+  ** sub-tasks are preferred as they use background threads - the final
   ** sub-task uses the main thread. */
   for(i=0; i<nWorker; i++){
     int iTest = (pSorter->iPrev + i + 1) % nWorker;
index 5e6ace5d766cbdcd811ff539a509d863ced286c7..ba2dbf6e93dae0ab10a49bd9c207d2e0d9f673e7 100644 (file)
@@ -273,7 +273,7 @@ msgstr "Signatur erfordert Unterzeichner, aber keiner verfügbar"
 #. 073
 #. 074
 #: ../lib/hx509/hx509_err.c:84 ../lib/hx509/hx509_err.c:85
-msgid "RSA public encyption failed"
+msgid "RSA public encryption failed"
 msgstr "RSA-Verschlüsselung mit öffentlichem Schlüssel fehlgeschlagen"
 
 #. 075
index 2913f6bcb9c8c0071d93c0a0cfdc7eb39aeab8d2..2305f21a962daa1a194706fc1e37b3a56ee0ff88 100644 (file)
@@ -267,7 +267,7 @@ msgstr ""
 #. 073
 #. 074
 #: ../lib/hx509/hx509_err.c:84 ../lib/hx509/hx509_err.c:85
-msgid "RSA public encyption failed"
+msgid "RSA public encryption failed"
 msgstr ""
 
 #. 075
index e7e8a1deaedcb53593c8627809c0c90392aeb27d..a846e4b7ece2e79a60dfa9efaf7bbb4568e3cb4b 100644 (file)
@@ -325,9 +325,8 @@ msgstr "Verschlüsselungstyp %s ist deaktiviert."
 msgid "checksum type %s is disabled"
 msgstr "Prüfsummentyp %s ist deaktiviert."
 
-# FIXME: s/confunder/confounder/
 #: lib/krb5/crypto.c:2958
-msgid "Encrypted data shorter then checksum + confunder"
+msgid "Encrypted data shorter then checksum + confounder"
 msgstr "verschlüsselte Daten kürzer als Prüfsumme + Störfaktor"
 
 #: lib/krb5/crypto.c:3585
index 3edacd2c246ef22ad5287901f9cf405f6e4e248d..25e1919c063e5d32fd0426c1762e40c1e8343dde 100644 (file)
@@ -549,7 +549,7 @@ msgid "checksum type %s is disabled"
 msgstr ""
 
 #: lib/krb5/crypto.c:2958
-msgid "Encrypted data shorter then checksum + confunder"
+msgid "Encrypted data shorter then checksum + confounder"
 msgstr ""
 
 #: lib/krb5/crypto.c:3585
index f9721845a0b2f5001e7512d5e1d3e66b67da31a1..79d094172bfe96f3ca4fa51bc5f2be4a926a5c43 100644 (file)
@@ -540,7 +540,7 @@ msgid "checksum type %s is disabled"
 msgstr ""
 
 #: lib/krb5/crypto.c:2979
-msgid "Encrypted data shorter then checksum + confunder"
+msgid "Encrypted data shorter then checksum + confounder"
 msgstr ""
 
 #: lib/krb5/crypto.c:3589