- Oct 13, 2022
-
-
Use #elif defined(...) for HAVE_WINSOCK and MACOS. All other instances of these macros use #ifdef or similar. A compiler may warn about them not being defined. In libraries/liblber/sockbuf.c, (DOS && PCNFS) and (DOS && NCSA) were replaced with HAVE_PCNFS and HAVE_NCSA, respectively. It seems logical to do the same at the only remaining occurrence of DOS, PCNFS, and NCSA. Use #if HARDCODE_DATA consistently, replacing two instances of #ifdef. HARDCODE_DATA is always defined, and this way you can set HARDCODE_DATA to 0 and have it work, rather than it going down the wrong branch and failing in these two cases.
-
Git doesn't recreate empty directories, make it explicitly
-
Quanah Gibson-Mount authored
-
-
-
-
-
- Oct 10, 2022
-
-
Quanah Gibson-Mount authored
-
Was broken if only dynamic lists were configured, and not groups. Optional config URIs were being ignored. Don't prevent returning dynamic lists if dynamic groups were part of search.
-
- Oct 06, 2022
-
-
Quanah Gibson-Mount authored
-
Create them when running the test script instead.
-
-
- Oct 04, 2022
-
-
Quanah Gibson-Mount authored
-
Quanah Gibson-Mount authored
-
- Oct 03, 2022
-
-
Quanah Gibson-Mount authored
-
Quanah Gibson-Mount authored
-
Quanah Gibson-Mount authored
-
The options -h and -p got removed from client tools in commit 66af4cfd. However, they were still present in the options[] array in several client tools source files. So, if one of those tools got executed with -h or -p followed by a value, this lead to the error "unrecognized option -", without mentioning which option was problematic. Removing 'h' and 'p' from options[] fixes this.
-
Quanah Gibson-Mount authored
-
Quanah Gibson-Mount authored
-
memory alloc'd by bvarray_dup must be freed by bvarray_free, not regular free.
-
- Sep 27, 2022
-
-
ITS#9919 - Mark infrequently used functions as cold rather than manually putting them in a separate section
-
- Sep 26, 2022
-
-
Quanah Gibson-Mount authored
-
Quanah Gibson-Mount authored
-
-
- Sep 23, 2022
-
-
It also contains the cacheflush function declaration.
-
- Sep 12, 2022
-
-
Quanah Gibson-Mount authored
-
Quanah Gibson-Mount authored
-
Quanah Gibson-Mount authored
-
Quanah Gibson-Mount authored
-
Quanah Gibson-Mount authored
-
-
-
-
-
-
- Aug 30, 2022
-
-
Quanah Gibson-Mount authored
-
-
- Aug 29, 2022
-
-
Quanah Gibson-Mount authored
-
Avoid unnecessary strdup in IPv6 addr parsing, check for strdup failure when dup'ing scheme. Code present since 2000, 8da110a9
-