summaryrefslogtreecommitdiffstats
path: root/ax25/ax25d.c
diff options
context:
space:
mode:
authorThomas Osterried <thomas@osterried.de>2006-01-08 18:26:43 +0000
committerThomas Osterried <thomas@osterried.de>2006-01-08 18:26:43 +0000
commit3cbf76b0d19b003402ae69c0f9a01e03260af3c3 (patch)
tree98c319f53eff9e331f0466ea17842f7b51015e8b /ax25/ax25d.c
parent6770d9b9ff2b9ba21426a89dc705cb2169dadb99 (diff)
Fixed Length of Node
Here stood: static char Node[11]; /* Room for 'GB9ZZZ-15\0' */ ;))
Diffstat (limited to 'ax25/ax25d.c')
-rw-r--r--ax25/ax25d.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ax25/ax25d.c b/ax25/ax25d.c
index 459b429..8a7cdcb 100644
--- a/ax25/ax25d.c
+++ b/ax25/ax25d.c
@@ -1,5 +1,5 @@
/*
- * $Id: ax25d.c,v 1.3 2005/11/28 19:09:39 dl9sau Exp $
+ * $Id: ax25d.c,v 1.4 2006/01/08 18:26:43 dl9sau Exp $
*
* This is my version of axl.c, written for the LBBS code to make it
* compatable with the kernel AX25 driver. It appears to work, with
@@ -199,7 +199,7 @@ struct axlist { /* Have used same struct for quickness */
static struct axlist *AXL = NULL;
static char *ConfigFile = CONF_AX25D_FILE;
static char User[10]; /* Room for 'GB9ZZZ-15\0' */
-static char Node[11]; /* Room for 'GB9ZZZ-15\0' */
+static char Node[10]; /* Room for 'GB9ZZZ-15\0' */
static char myAX25Name[10]; /* Room for 'GB9ZZZ-15\0' */
static char *Port;
static int Logging = FALSE;