From: David Parrish Date: Fri, 16 Apr 2004 02:33:32 +0000 (+0000) Subject: Small typo fixes from Paul Lampron X-Git-Tag: 2.2.1-2fdn3.1~19^2^2~1^2~469 X-Git-Url: http://git.sameswireless.fr/l2tpns.git/commitdiff_plain/32e5db59062efd8e40d0d5360bab479ef838ebef Small typo fixes from Paul Lampron --- diff --git a/Docs/manual.html b/Docs/manual.html index a4ae0b3..a1c398f 100644 --- a/Docs/manual.html +++ b/Docs/manual.html @@ -880,6 +880,6 @@ That's really what it looks like.


David Parrish
-david@dparrsih.com +david@dparrish.com diff --git a/Makefile b/Makefile index a7f3631..3fbe7db 100644 --- a/Makefile +++ b/Makefile @@ -50,7 +50,7 @@ install: all $(INSTALL) -D -o root -g root -m 0644 etc/ip_pool.default $(etcdir)/l2tpns.ip_pool $(INSTALL) -D -o root -g root -m 0600 etc/users.default $(etcdir)/l2tpns.users for PLUGIN in $(PLUGINS); do \ - $(INSTALL) -o root -g root -m 0755 $(PLUGIN) $(libdir)/$(PLUGIN); \ + $(INSTALL) -D -o root -g root -m 0755 $(PLUGIN) $(libdir)/$(PLUGIN); \ done if [ ! -e /dev/net/tun ]; then \ mkdir /dev/net; \ diff --git a/l2tpns.h b/l2tpns.h index a705b8e..3d85ce6 100644 --- a/l2tpns.h +++ b/l2tpns.h @@ -1,11 +1,11 @@ // L2TPNS Global Stuff -// $Id: l2tpns.h,v 1.3 2004-03-05 00:22:06 fred_nerk Exp $ +// $Id: l2tpns.h,v 1.4 2004-04-16 02:33:32 fred_nerk Exp $ #include #include #include "config.h" -#define VERSION "1.1.0" +#define VERSION "1.1.2" // Limits #define MAXTUNNEL 500 // could be up to 65535 @@ -32,9 +32,9 @@ #define HOMEDIR "/home/l2tpns/" // Base dir for data #define STATEFILE "/tmp/l2tpns.dump" // State dump file #define NOSTATEFILE "/tmp/l2tpns.no_state_reload" // If exists, state will not be reloaded -#define CONFIGFILE ETCDIR "l2tpns.cfg" // Configuration file -#define CLIUSERS ETCDIR "l2tpns.users" // CLI Users file -#define IPPOOLFILE ETCDIR "l2tpns.ip_pool" // Address pool configuration +#define CONFIGFILE ETCDIR "/l2tpns.cfg" // Configuration file +#define CLIUSERS ETCDIR "/l2tpns.users" // CLI Users file +#define IPPOOLFILE ETCDIR "/l2tpns.ip_pool" // Address pool configuration #ifndef LIBDIR #define LIBDIR "/usr/lib/l2tpns" #endif