diff options
| author | Brian Somers <brian@FreeBSD.org> | 1998-08-09 09:13:54 +0000 |
|---|---|---|
| committer | Brian Somers <brian@FreeBSD.org> | 1998-08-09 09:13:54 +0000 |
| commit | 2a63083586f18ece12f34a3a9b78c2f1177f686a (patch) | |
| tree | e565bceb675acdc9c8a01d5dd38629e6ce45ec90 | |
| parent | 0eaf7cf01b8a0fa0ee81324f17df580fcbea71e7 (diff) | |
Notes
| -rw-r--r-- | usr.sbin/ppp/main.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/usr.sbin/ppp/main.c b/usr.sbin/ppp/main.c index 408e5e93701c..e84192d60eca 100644 --- a/usr.sbin/ppp/main.c +++ b/usr.sbin/ppp/main.c @@ -17,7 +17,7 @@ * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. * - * $Id: main.c,v 1.140 1998/08/02 06:56:40 brian Exp $ + * $Id: main.c,v 1.141 1998/08/07 18:42:49 brian Exp $ * * TODO: */ @@ -28,6 +28,9 @@ #include <netinet/ip.h> #include <sys/un.h> +#ifndef NOALIAS +#include <alias.h> +#endif #include <errno.h> #include <fcntl.h> #include <paths.h> @@ -258,6 +261,9 @@ main(int argc, char **argv) name = strrchr(argv[0], '/'); log_Open(name ? name + 1 : argv[0]); +#ifndef NOALIAS + PacketAliasInit(); +#endif label = ProcessArgs(argc - 1, argv + 1, &mode, &alias); #ifdef __FreeBSD__ |
