aboutsummaryrefslogtreecommitdiffstats
path: root/mx.h
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1998-01-18 18:46:59 +0000
committerEric S. Raymond <esr@thyrsus.com>1998-01-18 18:46:59 +0000
commitc052c34a057f079265c748259c1b2b5893596ba1 (patch)
treef641352f91a0f355640d4b7423e38e663b4c5cd9 /mx.h
parent82d439ab4b351b4193521428fa449f392c8ec0ac (diff)
downloadfetchmail-c052c34a057f079265c748259c1b2b5893596ba1.tar.gz
fetchmail-c052c34a057f079265c748259c1b2b5893596ba1.tar.bz2
fetchmail-c052c34a057f079265c748259c1b2b5893596ba1.zip
Change mxget from unsigned char * to char *.
svn path=/trunk/; revision=1596
Diffstat (limited to 'mx.h')
-rw-r--r--mx.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/mx.h b/mx.h
index b32a7ef4..0a28f2b0 100644
--- a/mx.h
+++ b/mx.h
@@ -2,11 +2,11 @@
struct mxentry
{
- unsigned char *name;
- int pref;
+ char *name;
+ int pref;
};
-extern struct mxentry * getmxrecords(const unsigned char *);
+extern struct mxentry * getmxrecords(const char *);
/* some versions of FreeBSD should declare this but don't */
extern int h_errno;