1Upstream-Status: Pending
2
3Dont assume errno type
4
5--- ez-ipupdate-3.0.11b7/conf_file.c.orig	2014-07-02 14:01:19.174029328 -0600
6+++ ez-ipupdate-3.0.11b7/conf_file.c	2014-07-02 14:08:42.982026223 -0600
7@@ -38,11 +38,11 @@
8 #include <conf_file.h>
9
10 #if HAVE_STRERROR
11-extern int errno;
12+#  include <errno.h>
13 #  define error_string strerror(errno)
14 #elif HAVE_SYS_ERRLIST
15 extern const char *const sys_errlist[];
16-extern int errno;
17+#  include <errno.h>
18 #  define error_string (sys_errlist[errno])
19 #else
20 #  define error_string "error message not found"
21