summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--6pack/m6pack.c46
-rw-r--r--ax25/ax25d.c2
-rw-r--r--ax25/axgetput/axgetput.c26
-rw-r--r--ax25/axgetput/axgetput.h2
-rw-r--r--ax25/axgetput/proto_bin.c2
-rw-r--r--ax25/axgetput/proto_bin.h2
-rw-r--r--ax25/axgetput/util.c2
-rw-r--r--ax25/axgetput/util.h2
-rw-r--r--ax25/axspawn.c3
-rw-r--r--ax25/bpqparms.c6
-rw-r--r--dmascc/README.dmascc2
-rw-r--r--dmascc/dmascc_cfg.c2
12 files changed, 5 insertions, 92 deletions
diff --git a/6pack/m6pack.c b/6pack/m6pack.c
index 5d8f7a3..e5ee2ee 100644
--- a/6pack/m6pack.c
+++ b/6pack/m6pack.c
@@ -6,54 +6,10 @@
* Fake out AX.25 code into supporting 6pack TNC rings by routing serial
* port data to/from pseudo ttys.
*
- * @(#)m6pack.c $Revision: 1.4 $ $Date: 2011/04/08 10:36:44 $
- *
* Author(s):
*
* Iñaki Arenaza (EB2EBU) <iarenaza@escomposlinux.org>
*
- * History:
- *
- * $Log: m6pack.c,v $
- * Revision 1.4 2011/04/08 10:36:44 ralf
- * Fix incorrectly encoded ñ in Iñaki Arenaza's name.
- *
- * Revision 1.3 2009/01/20 18:31:25 dl9sau
- * Unix98 support.
- * Thanks to dk2crn.
- *
- * Revision 1.2 2009/01/20 16:18:02 dl9sau
- * Unix98 PTY support for mkiss and m6pack.
- *
- * Revision 1.1 2005/12/10 16:17:28 dl9sau
- * support for 6pack tnc rings (patch found at sf.net)
- * from Iñaki Arenaza EB2EBU <iarenaza@escomposlinux.org>
- *
- * Revision 0.9 2002/04/28 15:05:39 hermes-team
- * Minor fixes to make it part of ax25-tools-0.0.8
- *
- * Revision 0.7 1999/04/25 11:03:51 hermes-team
- * Minor cosmetic changes.
- *
- * Revision 0.6 1999/04/25 10:30:51 hermes-team
- * TTY unlocking was missing from SIGTERM handler. Thanks to Tommi Manninen
- * for pointing it out.
- *
- * Revision 0.5 1999/04/07 09:16:06 hermes-team
- * First public beta release. It _seems_ to work with two TNC's in a ring
- * (I only have two TNC's to test :-(
- *
- * Revision 0.4 1999/04/06 14:35:56 hermes-team
- * Removed the code that checked that trailing SEOF's address was equal to
- * leading SEOF's address (it seems this hasn't to be so, but it wasn't very
- * clear in DG2FEF & HB9JNX's paper)
- *
- * Revision 0.3 1999/01/31 23:02:09 hermes-team
- * Modified code that calls write(2) in sixpack_tx to handle big data blocks.
- *
- * Revision 0.2 1999/01/31 15:56:51 hermes-team
- * Initial Release. This is still alpha software.
- *
*********************************************************************
*
* Quite a lot of stuff "stolen" from mkiss.c, written by
@@ -98,8 +54,6 @@
#include <config.h>
-static char *version ="$Id: m6pack.c,v 1.4 2011/04/08 10:36:44 ralf Exp $";
-
typedef unsigned char __u8;
typedef enum {data, command} frame_t;
diff --git a/ax25/ax25d.c b/ax25/ax25d.c
index 3ed47ca..730ca49 100644
--- a/ax25/ax25d.c
+++ b/ax25/ax25d.c
@@ -1,6 +1,4 @@
/*
- * $Id: ax25d.c,v 1.9 2011/08/18 09:51:08 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
* my setup, so it'll probably not work else where :-).
diff --git a/ax25/axgetput/axgetput.c b/ax25/axgetput/axgetput.c
index 55e8364..d3d3f53 100644
--- a/ax25/axgetput/axgetput.c
+++ b/ax25/axgetput/axgetput.c
@@ -1,5 +1,3 @@
-static const char rcsid[] = "@(#) $Id: axgetput.c,v 1.5 2009/06/23 22:13:51 ralf Exp $";
-
/*
* This is axgetput
*
@@ -16,6 +14,9 @@ static const char rcsid[] = "@(#) $Id: axgetput.c,v 1.5 2009/06/23 22:13:51 ralf
*
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#include "includes.h"
@@ -47,16 +48,6 @@ static mode_t mode_tty = 0;
#define MYNAME "axgetput"
#endif
-struct revision {
- char number[16];
- char date[16];
- char time[16];
- char author[16];
- char state[16];
-};
-
-static struct revision revision;
-
/*---------------------------------------------------------------------------*/
static void set_tty_flags(void)
@@ -153,7 +144,7 @@ static void signal_handler(int sig)
void do_version(void)
{
- fprintf(stderr, MYNAME " %s %s\n", revision.number, revision.date);
+ fprintf(stderr, MYNAME " " VERSION "\n");
fprintf(stderr, " (c) 2002 Thomas Osterried <thomas@x-berg.in-berlin.de>\n");
fprintf(stderr, " License: GPL. See http://www.fsf.org/\n");
fprintf(stderr, " Sources: http://x-berg.in-berlin.de/cgi-bin/viewcvs.cgi/ampr/axgetput/\n");
@@ -216,15 +207,6 @@ int main(int argc, char *argv[])
int ret = 0;
int c;
char *p;
- char buf[1024];
-
- strcpy(buf, rcsid);
- sscanf(buf, "%*s %*s %*s %s %s %s %s %s",
- revision.number,
- revision.date,
- revision.time,
- revision.author,
- revision.state);
/* determine what to so in the way how we are called */
if ((p = strrchr(argv[0], '/')))
diff --git a/ax25/axgetput/axgetput.h b/ax25/axgetput/axgetput.h
index 59f1c74..c1ad6fa 100644
--- a/ax25/axgetput/axgetput.h
+++ b/ax25/axgetput/axgetput.h
@@ -1,5 +1,3 @@
-/* @(#) $Id: axgetput.h,v 1.2 2007/01/23 13:40:01 ralf Exp $ */
-
/*
* (c) 2002 Thomas Osterried DL9SAU <thomas@x-berg.in-berlin.de>
* License: GPL. See http://www.fsf.org/
diff --git a/ax25/axgetput/proto_bin.c b/ax25/axgetput/proto_bin.c
index c59a43c..004ca5e 100644
--- a/ax25/axgetput/proto_bin.c
+++ b/ax25/axgetput/proto_bin.c
@@ -1,5 +1,3 @@
-/* @(#) $Id: proto_bin.c,v 1.4 2009/01/22 11:08:50 dl9sau Exp $ */
-
/*
* (c) 2002 Thomas Osterried DL9SAU <thomas@x-berg.in-berlin.de>
* License: GPL. See http://www.fsf.org/
diff --git a/ax25/axgetput/proto_bin.h b/ax25/axgetput/proto_bin.h
index 41c43e0..6c53fad 100644
--- a/ax25/axgetput/proto_bin.h
+++ b/ax25/axgetput/proto_bin.h
@@ -1,5 +1,3 @@
-/* @(#) $Id: proto_bin.h,v 1.1 2006/12/10 19:12:59 dl9sau Exp $ */
-
/*
* (c) 2002 Thomas Osterried DL9SAU <thomas@x-berg.in-berlin.de>
* License: GPL. See http://www.fsf.org/
diff --git a/ax25/axgetput/util.c b/ax25/axgetput/util.c
index b1d4cd3..4aff6a0 100644
--- a/ax25/axgetput/util.c
+++ b/ax25/axgetput/util.c
@@ -1,5 +1,3 @@
-/* @(#) $Id: util.c,v 1.2 2007/01/23 13:40:01 ralf Exp $ */
-
/*
* (c) 2002 Thomas Osterried DL9SAU <thomas@x-berg.in-berlin.de>
* License: GPL. See http://www.fsf.org/
diff --git a/ax25/axgetput/util.h b/ax25/axgetput/util.h
index f6d115d..abec764 100644
--- a/ax25/axgetput/util.h
+++ b/ax25/axgetput/util.h
@@ -1,5 +1,3 @@
-/* @(#) $Id: util.h,v 1.1 2006/12/10 19:12:59 dl9sau Exp $ */
-
/*
* (c) 2002 Thomas Osterried DL9SAU <thomas@x-berg.in-berlin.de>
* License: GPL. See http://www.fsf.org/
diff --git a/ax25/axspawn.c b/ax25/axspawn.c
index 5d0cfac..e8ad0fa 100644
--- a/ax25/axspawn.c
+++ b/ax25/axspawn.c
@@ -1,7 +1,4 @@
/*
- *
- * $Id: axspawn.c,v 1.27 2011/08/18 10:43:49 dl9sau Exp $
- *
* axspawn.c - run a program from ax25d.
*
* Copyright (c) 1996 Joerg Reuter DL1BKE (jreuter@poboxes.com)
diff --git a/ax25/bpqparms.c b/ax25/bpqparms.c
index 62eeab8..f8e9d66 100644
--- a/ax25/bpqparms.c
+++ b/ax25/bpqparms.c
@@ -37,8 +37,6 @@
#include <config.h>
-#define RCS_ID "$Id: bpqparms.c,v 1.3 2007/01/23 13:40:01 ralf Exp $"
-
void usage(void)
{
fprintf(stderr, "usage : bpqparms dev -d address [-a address]\n");
@@ -47,8 +45,6 @@ void usage(void)
exit(1);
}
-char *Version = "$Revision: 1.3 $";
-
int get_hwaddr(unsigned char *k, char *s)
{
unsigned char broadcast[ETH_ALEN] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
@@ -100,7 +96,7 @@ int main(int argc, char **argv)
break;
case 'V':
- printf("bpqparms version %s\n", Version);
+ printf("bpqparms version " VERSION "\n");
printf("Copyright 1996, Jörg Reuter (jreuter@poboxes.com)\n");
printf("This program is free software; you can redistribute it and/or modify\n");
printf("it under the terms of the GNU General Public License as published by\n");
diff --git a/dmascc/README.dmascc b/dmascc/README.dmascc
index 1945616..1091c93 100644
--- a/dmascc/README.dmascc
+++ b/dmascc/README.dmascc
@@ -1,5 +1,3 @@
-$Id: README.dmascc,v 1.2 2001/05/10 10:44:45 csmall Exp $
-
The dmascc_cfg utility
======================
diff --git a/dmascc/dmascc_cfg.c b/dmascc/dmascc_cfg.c
index a556177..80f27c0 100644
--- a/dmascc/dmascc_cfg.c
+++ b/dmascc/dmascc_cfg.c
@@ -1,6 +1,4 @@
/*
- * $Id: dmascc_cfg.c,v 1.4 2009/05/27 14:26:06 dl9sau Exp $
- *
* Configuration utility for dmascc driver
* Copyright (C) 1997,2000 Klaus Kudielka
*