diff options
| author | Brent Cook <busterb@gmail.com> | 2025-05-18 20:45:36 +0900 |
|---|---|---|
| committer | Brent Cook <busterb@gmail.com> | 2025-05-18 20:46:32 +0900 |
| commit | 15bc02adc578c0c1f5afd1fbd9c96bbcfa388ad7 (patch) | |
| tree | a23f85db2ca4de8d4950a4980a6ef769576c01d9 /crypto | |
| parent | f8fafd5e8855e42a7046f9d22c8ff06e6c7410ae (diff) | |
| download | portable-15bc02adc578c0c1f5afd1fbd9c96bbcfa388ad7.tar.gz portable-15bc02adc578c0c1f5afd1fbd9c96bbcfa388ad7.tar.bz2 portable-15bc02adc578c0c1f5afd1fbd9c96bbcfa388ad7.zip | |
fix gitignore brokenness in crypto
/crypto/* masks too much and breaks the exclusion function.
The docs for gitignore state that if a parent directory is ignored,
negating a pattern with a ! prefix has no effect since it is not
possible to reinclude a file if the parent director is excluded.
https://git-scm.com/docs/gitignore
This just is more explicit, which catches files added out of tree more
readily.
Also delete the long-removed libtls-standalone references
Diffstat (limited to 'crypto')
| -rw-r--r-- | crypto/compat/.gitignore | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/crypto/compat/.gitignore b/crypto/compat/.gitignore new file mode 100644 index 0000000..7f05049 --- /dev/null +++ b/crypto/compat/.gitignore | |||
| @@ -0,0 +1,31 @@ | |||
| 1 | arc4random.c | ||
| 2 | arc4random_aix.h | ||
| 3 | arc4random_freebsd.h | ||
| 4 | arc4random_hpux.h | ||
| 5 | arc4random_linux.h | ||
| 6 | arc4random_netbsd.h | ||
| 7 | arc4random_osx.h | ||
| 8 | arc4random_solaris.h | ||
| 9 | arc4random_uniform.c | ||
| 10 | arc4random_win.h | ||
| 11 | chacha_private.h | ||
| 12 | explicit_bzero.c | ||
| 13 | getentropy_aix.c | ||
| 14 | getentropy_freebsd.c | ||
| 15 | getentropy_hpux.c | ||
| 16 | getentropy_linux.c | ||
| 17 | getentropy_netbsd.c | ||
| 18 | getentropy_osx.c | ||
| 19 | getentropy_solaris.c | ||
| 20 | getentropy_win.c | ||
| 21 | reallocarray.c | ||
| 22 | recallocarray.c | ||
| 23 | strcasecmp.c | ||
| 24 | strlcat.c | ||
| 25 | strlcpy.c | ||
| 26 | strndup.c | ||
| 27 | strnlen.c | ||
| 28 | strsep.c | ||
| 29 | strtonum.c | ||
| 30 | timingsafe_bcmp.c | ||
| 31 | timingsafe_memcmp.c | ||
