]> Pileus Git - ~andy/fetchmail/blobdiff - mx.h
Patch to make imap_trail actually work. Sunil Shetye.
[~andy/fetchmail] / mx.h
diff --git a/mx.h b/mx.h
index 0a28f2b0c3c1667cdb160169ca4561aaf9a09ca2..511eba785755303354720afaea04b55f25d0f8d0 100644 (file)
--- a/mx.h
+++ b/mx.h
@@ -1,14 +1,19 @@
-/* mx.h -- name-to-preference association for MX records */
+/* mx.h -- name-to-preference association for MX records.
+ * For license terms, see the file COPYING in this directory.
+ */
 
 struct mxentry
 {
-    char       *name;
-    int                pref;
+    unsigned char      *name;
+    int                        pref;
 };
 
 extern struct mxentry * getmxrecords(const char *);
 
 /* some versions of FreeBSD should declare this but don't */
+/* But only declare it if it isn't already */
+#ifndef h_errno
 extern int h_errno;
+#endif /* ndef h_errno */
 
 /* mx.h ends here */