summaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2003-12-06 17:29:30 +0000
committerLennart Poettering <lennart@poettering.net>2003-12-06 17:29:30 +0000
commit6057e37bf6492a6a9a243522ea77d28b530e5fbe (patch)
tree26693edb7857b2bdb129335177df7658e54391cf /kernel
parent36693cc2826350bf3224906636b97fc7731ba735 (diff)
final fixes for seppl 0.3
git-svn-id: file:///home/lennart/svn/public/seppl/trunk@21 91a2fd9b-5dcb-0310-a70a-d71e310228e6
Diffstat (limited to 'kernel')
-rw-r--r--kernel/Makefile.in2
-rw-r--r--kernel/seppl.c8
2 files changed, 5 insertions, 5 deletions
diff --git a/kernel/Makefile.in b/kernel/Makefile.in
index be8c133..0d6d325 100644
--- a/kernel/Makefile.in
+++ b/kernel/Makefile.in
@@ -25,7 +25,7 @@ VERSION=@VERSION@
DISTFILES=seppl.c seppl.h ipt_CRYPT.c ipt_CRYPT.h ipt_DECRYPT.c ipt_DECRYPT.h test.sh Makefile.in seppl_protocol.h
distdir = ../$(PACKAGE)-$(VERSION)
CFLAGS=-Wall -g -O2
-KERNEL_CFLAGS= -I$(KERNELDIR)/include -DLINUX -DMODULE -D__KERNEL__ -DEXPORT_SYMTAB -DPACKAGE_BUGREPORT="\"@PACKAGE_BUGREPORT@\""
+KERNEL_CFLAGS= -I$(KERNELDIR)/include -DLINUX -DMODULE -D__KERNEL__ -DEXPORT_SYMTAB -DPACKAGE_BUGREPORT="\"@PACKAGE_BUGREPORT@\"" -DPACKAGE_VERSION="\"@PACKAGE_VERSION@\""
include $(KERNELDIR)/.config
diff --git a/kernel/seppl.c b/kernel/seppl.c
index fd54b55..c580bcd 100644
--- a/kernel/seppl.c
+++ b/kernel/seppl.c
@@ -24,12 +24,12 @@
#if defined(CONFIG_MODVERSIONS) && !defined(MODVERSIONS)
#define MODVERSIONS
#endif
-
+
#if defined(MODVERSIONS) && !defined(__GENKSYMS__)
#include <linux/modversions.h>
#include "seppl.ver"
#endif
-
+
#include <linux/module.h>
#include <linux/skbuff.h>
#include <linux/interrupt.h>
@@ -447,8 +447,8 @@ static int __init init(void) {
proc_file->write_proc = seppl_proc_write_func;
proc_file->owner = THIS_MODULE;
proc_file->size = 0;
-
- printk("SEPPL: Loaded.\n");
+
+ printk("SEPPL: Loaded SEPPL "PACKAGE_VERSION", 2003 by Lennart Poettering <"PACKAGE_BUGREPORT">.\n");
return 0;
}