]> git.ipfire.org Git - thirdparty/suricata.git/commitdiff
mime: spelling
authorVictor Julien <vjulien@oisf.net>
Sat, 6 May 2023 05:19:43 +0000 (07:19 +0200)
committerVictor Julien <vjulien@oisf.net>
Sat, 6 May 2023 15:38:55 +0000 (17:38 +0200)
src/util-decode-mime.c

index 78ec786ae7a80b243268e2b05ed3e99f97848cda..c96f9afa8b69b9ca074585d20328a7b1b18b4f59 100644 (file)
@@ -1322,7 +1322,7 @@ static int ProcessBase64BodyLine(const uint8_t *buf, uint32_t len,
     /* First process remaining from previous line. We will consume
      * state->bvremain, filling it from 'buf' until we have a properly
      * sized block. Spaces are skipped (rfc2045). If state->bvr_len
-     * is not 0 after procesing we have no data left at 'buf'. */
+     * is not 0 after processing we have no data left at 'buf'. */
     if (state->bvr_len > 0) {
         uint32_t consumed = ProcessBase64Remainder(buf, len, state, 0);
         DEBUG_VALIDATE_BUG_ON(consumed > len);
@@ -1510,7 +1510,7 @@ static int ProcessQuotedPrintableBodyLine(const uint8_t *buf, uint32_t len,
                             state->data_chunk_len += EOL_LEN;
                         }
 
-                        /* Account for extra 2 characters in 3-characted QP
+                        /* Account for extra 2 characters in 3-character QP
                          * sequence */
                         remaining -= 2;
                         offset += 2;