When building the libgcrypt-based code, string.h is included through libgcrypt itself, but when building with OpenSSL it's missing. Include it explicitly so that it's always safe. --- reglib.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/reglib.c b/reglib.c index c173818..2f10d23 100644 --- a/reglib.c +++ b/reglib.c @@ -1,5 +1,6 @@ #include <errno.h> #include <stdio.h> +#include <string.h> #include <arpa/inet.h> #include "reglib.h" -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html