mirror of
https://github.com/NLnetLabs/unbound.git
synced 2026-02-18 18:25:10 -05:00
What I changed:
Respected repo rules / avoided generated & third‑party artifacts
Skipped Autotools/libtool generated files like configure, aclocal.m4, ltmain.sh, config.guess, config.sub.
Skipped large test vectors (testdata/, dnscrypt/testdata/) and non-UTF8 sample data (pythonmod/examples/dict_data.txt).
Skipped contrib/fastrpz.patch (patch content is effectively third‑party / not meant to be edited in-tree).
Fixed typos in maintained sources/docs
Various doc/comment spelling fixes (e.g. doc/Changelog, doc/example.conf.in, headers, etc.).
Fixed a real typo in a runtime log message: cachedb/redis.c ("%swith" -> "%s with").
Updated Makefile.in to avoid the misspelling Decomissioned while still matching both spellings via regex.
Fixed Synthetize -> Synthesize and other comment-level typos.
Improved a few “codespell false-positive” tokens by adjusting comments (e.g. inout -> in/out).
Repaired an accidental corruption
During edits, daemon/remote.c got partially mangled around the view local-data handlers. I restored it by:
Reintroducing do_view_data_remove()
Repairing do_view_datas_add() and its end-of-function logic
Cleaning up the remaining removed 0 ... message text
Added future-proof configuration
Created repo-root .codespellrc with:
skip = ... list matching the “do not edit / generated / testdata” policy
ignore-words-list = ... for known project terms / false positives
ignore-regex = ... to preserve your existing ignore patterns
Verification
codespell --config ./.codespellrc . now exits 0 (clean run).
Summary
Typos were fixed where safe, generated/third-party areas were excluded, .codespellrc was added for repeatable checks, and codespell now passes cleanly using that config.
Signed-off-by: rezky_nightky <with.rezky@gmail.com>
|
||
|---|---|---|
| .. | ||
| data | ||
| shm_side | ||
| storage | ||
| alloc.c | ||
| alloc.h | ||
| as112.c | ||
| as112.h | ||
| config_file.c | ||
| config_file.h | ||
| configlexer.lex | ||
| configparser.y | ||
| configyyrename.h | ||
| edns.c | ||
| edns.h | ||
| fptr_wlist.c | ||
| fptr_wlist.h | ||
| iana_ports.inc | ||
| locks.c | ||
| locks.h | ||
| log.c | ||
| log.h | ||
| mini_event.c | ||
| mini_event.h | ||
| module.c | ||
| module.h | ||
| net_help.c | ||
| net_help.h | ||
| netevent.c | ||
| netevent.h | ||
| proxy_protocol.c | ||
| proxy_protocol.h | ||
| random.c | ||
| random.h | ||
| rbtree.c | ||
| rbtree.h | ||
| regional.c | ||
| regional.h | ||
| rfc_1982.c | ||
| rfc_1982.h | ||
| rtt.c | ||
| rtt.h | ||
| siphash.c | ||
| siphash.h | ||
| tcp_conn_limit.c | ||
| tcp_conn_limit.h | ||
| timehist.c | ||
| timehist.h | ||
| timeval_func.c | ||
| timeval_func.h | ||
| tube.c | ||
| tube.h | ||
| ub_event.c | ||
| ub_event.h | ||
| ub_event_pluggable.c | ||
| winsock_event.c | ||
| winsock_event.h | ||