diff options
author | Vsevolod Stakhov <vsevolod@rspamd.com> | 2022-04-15 22:00:14 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@rspamd.com> | 2022-04-15 22:00:14 +0100 |
commit | 8e9c5ec8edcbf68ba22c1695705c9dfeba8e70b2 (patch) | |
tree | b087c561a31a937b3d89037520130974c2df1bde /src/libcryptobox | |
parent | 1727d1df984ffadaa696d5057e54635f25304fd5 (diff) | |
download | rspamd-8e9c5ec8edcbf68ba22c1695705c9dfeba8e70b2.tar.gz rspamd-8e9c5ec8edcbf68ba22c1695705c9dfeba8e70b2.zip |
[Minor] Fix bogus comment
Diffstat (limited to 'src/libcryptobox')
-rw-r--r-- | src/libcryptobox/base64/ref.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcryptobox/base64/ref.c b/src/libcryptobox/base64/ref.c index 68889b90e..e01a4dc5e 100644 --- a/src/libcryptobox/base64/ref.c +++ b/src/libcryptobox/base64/ref.c @@ -217,7 +217,7 @@ repeat: } if (!ret && inlen > 0) { - /* Skip to the next valid character in lua_dns_resolver_resolve_commoninput */ + /* Skip to the next valid character in input */ while (inlen > 0 && base64_table_dec[*c] >= 254) { c ++; inlen --; |