summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCraig Small <csmall@enc.com.au>2003-02-22 12:18:40 +0000
committerCraig Small <csmall@enc.com.au>2003-02-22 12:18:40 +0000
commit3f26c9ca3d4625da6c2bdca5b4c238c4665119af (patch)
treebe67c79250a079fbc91a20f7366ec865188d84e3
parentc5ca9be8a7682a5b6e338a5d4d9ae0416379a3dd (diff)
changed syserrlist to strerrno
-rw-r--r--.cvsignore1
-rw-r--r--ChangeLog1
-rw-r--r--config.h.in2
-rw-r--r--kiss/kissnetd.c1
4 files changed, 4 insertions, 1 deletions
diff --git a/.cvsignore b/.cvsignore
index 2af76e8..08d20b3 100644
--- a/.cvsignore
+++ b/.cvsignore
@@ -4,3 +4,4 @@ config.h
config.log
config.status
stamp-h
+.deps
diff --git a/ChangeLog b/ChangeLog
index db6e2d3..f759c4b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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>