summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbrian <brian@FreeBSD.org>1999-11-29 18:53:43 +0000
committerbrian <brian@FreeBSD.org>1999-11-29 18:53:43 +0000
commit80af32c97b108dacf6028b29ecae08e5da839113 (patch)
tree222e38bfb1c9e2fc634bff603b7058c7adcc67eb
parentbe8594a1e7170240592eb897aecc4f6090dec1be (diff)
downloadFreeBSD-src-80af32c97b108dacf6028b29ecae08e5da839113.zip
FreeBSD-src-80af32c97b108dacf6028b29ecae08e5da839113.tar.gz
depricated -> deprecated + mention the -alias flag status in README.changes
-rw-r--r--usr.sbin/ppp/README.changes7
-rw-r--r--usr.sbin/ppp/main.c4
2 files changed, 7 insertions, 4 deletions
diff --git a/usr.sbin/ppp/README.changes b/usr.sbin/ppp/README.changes
index e0c796e..11d83d6 100644
--- a/usr.sbin/ppp/README.changes
+++ b/usr.sbin/ppp/README.changes
@@ -1,3 +1,5 @@
+$FreeBSD$
+
This file summarises changes made to ppp that effect
its configuration.
@@ -83,13 +85,14 @@ o Ppp now accepts M$CHAP (as well as normal CHAP) by default. If this
o The ``set device'' command now expects each device to be specified as an
argument rather than concatentating all arguments and splitting based
on commas and spaces.
-o The ``show modem'' command is depricated and has been changed to
+o The ``show modem'' command is deprecated and has been changed to
``show physical''.
o The words ``host'' and ``port'' are no longer accepted by the ``set filter''
command. Removing them should yield the same results as before.
-o The ``set weight'' command has been depricated. The ``set bandwidth''
+o The ``set weight'' command has been deprecated. The ``set bandwidth''
command should now be used instead.
o The ``set autoload'' command syntax and implementation have changed as the
old implementation was mis-designed and dysfunctional.
o Ppp now waits either the full ``set cd'' time or until carrier is detected
before running the login script (whichever comes first).
+o The -alias flag has been deprecated. The -nat flag should be used instead.
diff --git a/usr.sbin/ppp/main.c b/usr.sbin/ppp/main.c
index 63ea644..5972f0c 100644
--- a/usr.sbin/ppp/main.c
+++ b/usr.sbin/ppp/main.c
@@ -226,8 +226,8 @@ ProcessArgs(int argc, char **argv, struct switches *sw)
log_Printf(LogWARN, "%s ignored: NAT is compiled out\n", argv[arg]);
fprintf(stderr, "%s ignored: NAT is compiled out\n", argv[arg]);
#else
- log_Printf(LogWARN, "%s is depricated\n", argv[arg]);
- fprintf(stderr, "%s is depricated\n", argv[arg]);
+ log_Printf(LogWARN, "%s is deprecated\n", argv[arg]);
+ fprintf(stderr, "%s is deprecated\n", argv[arg]);
sw->nat = 1;
#endif
optc--; /* this option isn't exclusive */
OpenPOWER on IntegriCloud