summaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
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;
}