summaryrefslogtreecommitdiffstats
path: root/server
diff options
context:
space:
mode:
authorBrian Cully <bjc@kublai.com>2008-04-15 12:40:48 -0400
committerBrian Cully <github.20.shmit@spamgourmet.com>2008-04-15 12:40:48 -0400
commitba74f0016d36ba6c2cc4eb6de84b66d641904650 (patch)
tree3a764750e429c564d968f7abad1720941da07c42 /server
parent5301741bdf4b4e8ed780713a25cc480fc370bd98 (diff)
downloadnastd-ba74f0016d36ba6c2cc4eb6de84b66d641904650.tar.gz
nastd-ba74f0016d36ba6c2cc4eb6de84b66d641904650.zip
Remove RCSIDs and BSD copyrights. We're GIT + GPLv3 now.
Diffstat (limited to 'server')
-rw-r--r--server/Makefile2
-rw-r--r--server/array.c2
-rw-r--r--server/array.h2
-rw-r--r--server/cdb.c2
-rw-r--r--server/cdb.h2
-rw-r--r--server/cdb_find.c2
-rw-r--r--server/cdb_hash.c2
-rw-r--r--server/cdb_unpack.c2
-rw-r--r--server/cdbpriv.h2
-rw-r--r--server/fqm.c2
-rw-r--r--server/fqm.h2
-rw-r--r--server/log.c2
-rw-r--r--server/log.h2
-rw-r--r--server/md5.c2
-rw-r--r--server/md5.h2
-rw-r--r--server/memdb.c2
-rw-r--r--server/memdb.h2
-rw-r--r--server/mysqldb.c2
-rw-r--r--server/mysqldb.h2
-rw-r--r--server/nastd.c2
-rw-r--r--server/nastdio.c2
-rw-r--r--server/nastdio.h2
-rw-r--r--server/periodic.c2
-rw-r--r--server/periodic.h2
-rw-r--r--server/thread.c2
-rw-r--r--server/thread.h2
26 files changed, 0 insertions, 52 deletions
diff --git a/server/Makefile b/server/Makefile
index 0d26efe..58d0a23 100644
--- a/server/Makefile
+++ b/server/Makefile
@@ -1,5 +1,3 @@
-# $Id: Makefile,v 1.17 2001/10/04 23:57:09 shmit Exp $
-
OBJS= array.o nastd.o nastdio.o cdb.o cdb_find.o cdb_hash.o \
cdb_unpack.o fqm.o log.o md5.o memdb.o mysqldb.o periodic.o \
thread.o ../libconfig/libconfig.a
diff --git a/server/array.c b/server/array.c
index 65766de..5b28b30 100644
--- a/server/array.c
+++ b/server/array.c
@@ -6,8 +6,6 @@
#include <stdlib.h>
#include <string.h>
-RCSID("$Id: array.c,v 1.10 2000/10/17 23:38:27 shmit Exp $");
-
string_t *
string_new(int slen, char *strdata)
{
diff --git a/server/array.h b/server/array.h
index 83b4ee1..d29390e 100644
--- a/server/array.h
+++ b/server/array.h
@@ -1,5 +1,3 @@
-/* $Id: array.h,v 1.4 2000/10/17 23:38:27 shmit Exp $ */
-
#ifndef ARRAY_H
#define ARRAY_H
diff --git a/server/cdb.c b/server/cdb.c
index 8c64adb..47abb07 100644
--- a/server/cdb.c
+++ b/server/cdb.c
@@ -18,8 +18,6 @@
#include <sys/uio.h>
#include <unistd.h>
-RCSID("$Id: cdb.c,v 1.64 2001/10/19 22:28:07 shmit Exp $");
-
time_t cdb_mtime;
static char *memcdb = NULL;
diff --git a/server/cdb.h b/server/cdb.h
index 0da14df..4729e3d 100644
--- a/server/cdb.h
+++ b/server/cdb.h
@@ -1,5 +1,3 @@
-/* $Id: cdb.h,v 1.11 2000/05/17 19:32:58 shmit Exp $ */
-
#ifndef CDB_H
#define CDB_H
diff --git a/server/cdb_find.c b/server/cdb_find.c
index b7c2fc9..abea2d3 100644
--- a/server/cdb_find.c
+++ b/server/cdb_find.c
@@ -9,8 +9,6 @@
#define SEEK_SET 0
#endif
-RCSID("$Id: cdb_find.c,v 1.2 2000/02/29 19:31:33 shmit Exp $");
-
static int
cdb_bread(char **ptr, char *endptr, unsigned char *buf, unsigned int len)
{
diff --git a/server/cdb_hash.c b/server/cdb_hash.c
index b664ba9..5004661 100644
--- a/server/cdb_hash.c
+++ b/server/cdb_hash.c
@@ -1,8 +1,6 @@
#include "conf.h"
#include "cdbpriv.h"
-RCSID("$Id: cdb_hash.c,v 1.2 2000/02/29 19:31:33 shmit Exp $");
-
uint32_t
cdb_hash(const unsigned char *buf, unsigned int len)
{
diff --git a/server/cdb_unpack.c b/server/cdb_unpack.c
index 14a71b9..48d7ac7 100644
--- a/server/cdb_unpack.c
+++ b/server/cdb_unpack.c
@@ -1,8 +1,6 @@
#include "conf.h"
#include "cdbpriv.h"
-RCSID("$Id: cdb_unpack.c,v 1.2 2000/02/29 19:31:33 shmit Exp $");
-
uint32_t
cdb_unpack(unsigned char *buf)
{
diff --git a/server/cdbpriv.h b/server/cdbpriv.h
index 2372b6b..e74b9c2 100644
--- a/server/cdbpriv.h
+++ b/server/cdbpriv.h
@@ -1,5 +1,3 @@
-/* $Id: cdbpriv.h,v 1.2 2000/02/29 19:15:28 shmit Exp $ */
-
#ifndef CDBPRIV_H
#define CDBPRIV_H
diff --git a/server/fqm.c b/server/fqm.c
index 73c9e54..6f4d33f 100644
--- a/server/fqm.c
+++ b/server/fqm.c
@@ -10,8 +10,6 @@
#include <string.h>
#include <unistd.h>
-RCSID("$Id: fqm.c,v 1.33 2001/10/29 11:17:13 shmit Exp $");
-
/* Global Variables */
fqm_t *fqm;
diff --git a/server/fqm.h b/server/fqm.h
index c3c27df..41223cb 100644
--- a/server/fqm.h
+++ b/server/fqm.h
@@ -1,5 +1,3 @@
-/* $Id: fqm.h,v 1.9 2000/11/08 19:50:24 shmit Exp $ */
-
#ifndef FQM_H
#define FQM_H
diff --git a/server/log.c b/server/log.c
index 612156d..6b11209 100644
--- a/server/log.c
+++ b/server/log.c
@@ -9,8 +9,6 @@
#include <time.h>
#include <unistd.h>
-RCSID("$Id: log.c,v 1.8 2000/11/13 18:47:17 shmit Exp $");
-
extern char *progname;
#if 0
diff --git a/server/log.h b/server/log.h
index 9aff53a..e9084b0 100644
--- a/server/log.h
+++ b/server/log.h
@@ -1,5 +1,3 @@
-/* $Id: log.h,v 1.1 2000/02/29 00:32:12 shmit Exp $ */
-
#ifndef LOG_H
# define LOG_H
diff --git a/server/md5.c b/server/md5.c
index b24f966..73a2d2a 100644
--- a/server/md5.c
+++ b/server/md5.c
@@ -27,8 +27,6 @@
#include <string.h>
-RCSID("$Id: md5.c,v 1.2 2000/03/27 22:23:25 shmit Exp $");
-
/* Constants for MD5Transform routine. */
#define S11 7
#define S12 12
diff --git a/server/md5.h b/server/md5.h
index 5f48d41..f36b3ca 100644
--- a/server/md5.h
+++ b/server/md5.h
@@ -1,5 +1,3 @@
-/* $Id: md5.h,v 1.2 2000/03/27 22:23:25 shmit Exp $ */
-
/*
* Copyright (C) 1991-2, RSA Data Security, Inc. Created 1991.
* All rights reserved.
diff --git a/server/memdb.c b/server/memdb.c
index 5dfbf64..6f7ee88 100644
--- a/server/memdb.c
+++ b/server/memdb.c
@@ -12,8 +12,6 @@
#include <string.h>
#include <time.h>
-RCSID("$Id: memdb.c,v 1.27 2001/10/04 23:57:10 shmit Exp $");
-
#define HASHSIZE 1024
extern time_t cdb_mtime;
diff --git a/server/memdb.h b/server/memdb.h
index 7dcc25d..21bca5e 100644
--- a/server/memdb.h
+++ b/server/memdb.h
@@ -1,5 +1,3 @@
-/* $Id: memdb.h,v 1.8 2000/05/17 19:32:58 shmit Exp $ */
-
#ifndef MEMDB_H
#define MEMDB_H
diff --git a/server/mysqldb.c b/server/mysqldb.c
index 9ce9d96..1d59c24 100644
--- a/server/mysqldb.c
+++ b/server/mysqldb.c
@@ -13,8 +13,6 @@
#include <stdlib.h>
#include <string.h>
-RCSID("$Id: mysqldb.c,v 1.30 2001/10/10 20:29:47 shmit Exp $");
-
extern fieldent *db_fields;
extern char db_key[1024];
extern char db_dbn[1024];
diff --git a/server/mysqldb.h b/server/mysqldb.h
index c5c703c..5816657 100644
--- a/server/mysqldb.h
+++ b/server/mysqldb.h
@@ -1,5 +1,3 @@
-/* $Id: mysqldb.h,v 1.7 2000/11/08 20:04:55 shmit Exp $ */
-
#ifndef MYSQLDB_H
#define MYSQLDB_H
diff --git a/server/nastd.c b/server/nastd.c
index 8c6bf06..cbe06eb 100644
--- a/server/nastd.c
+++ b/server/nastd.c
@@ -21,8 +21,6 @@
#include <time.h>
#include <unistd.h>
-RCSID("$Id: nastd.c,v 1.8 2001/11/09 15:54:38 shmit Exp $");
-
char *progname;
time_t start_time;
diff --git a/server/nastdio.c b/server/nastdio.c
index 93d85c7..5aaf67a 100644
--- a/server/nastdio.c
+++ b/server/nastdio.c
@@ -20,8 +20,6 @@
#include <sys/un.h>
#include <unistd.h>
-RCSID("$Id: nastdio.c,v 1.13 2001/10/29 11:17:13 shmit Exp $");
-
extern fqm_t *fqm;
extern fieldent *db_fields;
diff --git a/server/nastdio.h b/server/nastdio.h
index e3375f6..1431409 100644
--- a/server/nastdio.h
+++ b/server/nastdio.h
@@ -1,5 +1,3 @@
-/* $Id: nastdio.h,v 1.1 2000/09/13 20:21:34 shmit Exp $ */
-
#ifndef NASTDIO_H
#define NASTDIO_H
diff --git a/server/periodic.c b/server/periodic.c
index 839b406..6999760 100644
--- a/server/periodic.c
+++ b/server/periodic.c
@@ -11,8 +11,6 @@
#include <string.h>
#include <sys/time.h>
-RCSID("$Id: periodic.c,v 1.9 2000/05/17 21:52:34 shmit Exp $");
-
struct _per_thread_t {
cond_t *cond;
thread_t *tid;
diff --git a/server/periodic.h b/server/periodic.h
index 835fd4a..df0f32a 100644
--- a/server/periodic.h
+++ b/server/periodic.h
@@ -1,5 +1,3 @@
-/* $Id: periodic.h,v 1.2 2000/09/13 20:21:35 shmit Exp $ */
-
#ifndef NAST_PERIODIC_H
#define NAST_PERIODIC_H
diff --git a/server/thread.c b/server/thread.c
index 95737d6..2a46f83 100644
--- a/server/thread.c
+++ b/server/thread.c
@@ -12,8 +12,6 @@
#include <time.h>
#include <unistd.h>
-RCSID("$Id: thread.c,v 1.6 2000/03/21 19:18:24 shmit Exp $");
-
int
thread_new(thread_t *thread, void *(*thread_func)(void *), void *arg)
{
diff --git a/server/thread.h b/server/thread.h
index 0aadef4..329d678 100644
--- a/server/thread.h
+++ b/server/thread.h
@@ -1,5 +1,3 @@
-/* $Id: thread.h,v 1.5 2000/03/15 00:09:25 shmit Exp $ */
-
#ifndef THREAD_H
# define THREAD_H