src/libcollectdclient/: Check if EILSEQ is defined.
authorFlorian Forster <octo@leeloo.lan.home.verplant.org>
Fri, 17 Apr 2009 23:02:59 +0000 (01:02 +0200)
committerFlorian Forster <octo@leeloo.lan.home.verplant.org>
Fri, 17 Apr 2009 23:02:59 +0000 (01:02 +0200)
And fall back to EPROTO or EINVAL if it is not, e. g. under FreeBSD.

src/libcollectdclient/client.c

index 684fa39..f62994c 100644 (file)
 # define NI_MAXHOST 1025
 #endif
 
+/* OpenBSD doesn't have EPROTO, FreeBSD doesn't have EILSEQ. Oh what joy! */
+#ifndef EILSEQ
+# ifdef EPROTO
+#  define EILSEQ EPROTO
+# else
+#  define EILSEQ EINVAL
+# endif
+#endif
+
 /* Secure/static macros. They work like `strcpy' and `strcat', but assure null
  * termination. They work for static buffers only, because they use `sizeof'.
  * The `SSTRCATF' combines the functionality of `snprintf' and `strcat' which