pkgs/by-name/uu/uucp/socklen_t.patch
0 → 100644
+26
−0
Loading
The original code uses `size_t` for two variables that hold the sizes of structs, but the function they get passed to requires pointer to `socklen_t`, which is type `unsigned int *`. As far as I can tell, using `socklen_t` has been the standard for at least a couple decades. Stricter GCC 14 rules made this code not compile