commit 3ea97ada71823f64a41d2bee8ae42e02a9dee700
parent b670ce82b38cc57e67f3171f7224c8caffa033b0
Author: Jordan Ritter <jpr5@darkridge.com>
Date: Thu, 22 May 2014 13:56:00 -0700
Nuke old CVS Id references
Diffstat:
12 files changed, 3 insertions(+), 33 deletions(-)
diff --git a/Makefile.in b/Makefile.in
@@ -1,6 +1,4 @@
#
-# $Id$
-#
# Copyright (c) 2014 Jordan Ritter <jpr5@darkridge.com>
#
# Please refer to the LICENSE file for more information.
diff --git a/config.h.in b/config.h.in
@@ -1,6 +1,4 @@
/*
- * $Id$
- *
* Copyright (c) 2014 Jordan Ritter <jpr5@darkridge.com>
*
* Please refer to the LICENSE file for more information.
diff --git a/configure.in b/configure.in
@@ -1,6 +1,4 @@
dnl
-dnl $Id$
-dnl
dnl Copyright (c) 2014 Jordan Ritter <jpr5@darkridge.com>
dnl
dnl Please refer to the LICENSE file for more information.
diff --git a/ngrep.8 b/ngrep.8
@@ -1,5 +1,3 @@
-.\" $Id$
-.\"
.\" All content, except portions of the bpf filter explanation, are:
.\"
.\" Copyright (c) 2014 Jordan Ritter <jpr5@darkridge.com>
diff --git a/ngrep.c b/ngrep.c
@@ -1,6 +1,4 @@
/*
- * $Id$
- *
* Copyright (c) 2014 Jordan Ritter <jpr5@darkridge.com>
*
* Please refer to the LICENSE file for more information.
@@ -102,8 +100,6 @@
#include "ngrep.h"
-static char rcsver[] = "$Revision$";
-
/*
* Configuration Options
*/
@@ -1408,7 +1404,7 @@ void usage(int8_t e) {
void version(void) {
- printf("ngrep: V%s, %s\n", VERSION, rcsver);
+ printf("ngrep: V%s\n", VERSION);
exit(0);
}
diff --git a/ngrep.h b/ngrep.h
@@ -1,13 +1,11 @@
/*
- * $Id$
- *
* Copyright (c) 2014 Jordan Ritter <jpr5@darkridge.com>
*
* Please refer to the LICENSE file for more information.
*
*/
-#define VERSION "1.46-CVS"
+#define VERSION "1.46-git"
/*
* We cache the standard frame sizes here to save us time and
diff --git a/win32/support/config.h b/win32/support/config.h
@@ -1,6 +1,4 @@
/*
- * $Id$
- *
* Win32-specific version for manual manipulation.
*/
diff --git a/win32/support/getopt.c b/win32/support/getopt.c
@@ -1,6 +1,3 @@
-/*
- * $Id$
- */
#include <stdio.h> /* for EOF */
#include <string.h> /* for strchr() */
diff --git a/win32/support/getopt.h b/win32/support/getopt.h
@@ -1,6 +1,3 @@
-/*
- * $Id$
- */
#define _next_char(string) (char)(*(string+1))
diff --git a/win32/support/inet_ntop.c b/win32/support/inet_ntop.c
@@ -1,6 +1,4 @@
/*
- * $Id$
- *
* This is Win32-specific support functionality for inet_ntop(),
* which is missing from Win32. The code was used from FreeBSD:
*
diff --git a/win32/support/inet_ntop.h b/win32/support/inet_ntop.h
@@ -1,7 +1,5 @@
/*
- * $Id$
- *
* Compatibility header, supporting Win32-specific inet_ntop() implementation.
*/
-int inet_ntop(int af, const void *src, char *dst, size_t size);-
\ No newline at end of file
+int inet_ntop(int af, const void *src, char *dst, size_t size);
diff --git a/win32/support/types.h b/win32/support/types.h
@@ -1,7 +1,4 @@
-
/*
- * $Id$
- *
* Because Windows standard headers are woefully inadequate for (real)
* network application development, and because I'm basically lazy, I
* created this header as a container for the types ngrep needs.