diff options
-rw-r--r-- | .cvsignore | 1 | ||||
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | config.h.in | 2 | ||||
-rw-r--r-- | kiss/kissnetd.c | 1 |
4 files changed, 4 insertions, 1 deletions
@@ -4,3 +4,4 @@ config.h config.log config.status stamp-h +.deps @@ -3,6 +3,7 @@ ax25-tools (0.0.9) * Removed inline statesment in hdrvcomm.c * Added remaining missing sys/time.h * Netromd now uses PF_SOCKET + * Changed sys_errlist[] to strerror() -- Craig Small <csmall@small.dropbear.id.au> NO RELEASE YET diff --git a/config.h.in b/config.h.in index ef89ff5..c54be65 100644 --- a/config.h.in +++ b/config.h.in @@ -1,4 +1,4 @@ -/* config.h.in. Generated automatically from configure.in by autoheader. */ +/* config.h.in. Generated automatically from configure.in by autoheader 2.13. */ /* Define to empty if the keyword does not work. */ #undef const diff --git a/kiss/kissnetd.c b/kiss/kissnetd.c index 2000482..62ad4e0 100644 --- a/kiss/kissnetd.c +++ b/kiss/kissnetd.c @@ -13,6 +13,7 @@ #include <stdlib.h> #include <sys/time.h> #include <sys/types.h> +#include <string.h> #include <unistd.h> #include <assert.h> #include <fcntl.h> |