diff options
author | 2001-02-04 01:19:53 +0000 | |
---|---|---|
committer | 2001-02-04 01:19:53 +0000 | |
commit | bb65e7cb60419d3147a29eb0eac3f10ed003bb0b (patch) | |
tree | 3ebe5ffe9f609bee79fc7decafbd2825ba6e4f4c | |
parent | Don't send an authentication failure response if we fail sending (diff) | |
download | wireguard-openbsd-bb65e7cb60419d3147a29eb0eac3f10ed003bb0b.tar.xz wireguard-openbsd-bb65e7cb60419d3147a29eb0eac3f10ed003bb0b.zip |
MPPE_MasterKeyValid is only there if HAVE_DES is defined
-rw-r--r-- | usr.sbin/ppp/ppp/bundle.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.sbin/ppp/ppp/bundle.c b/usr.sbin/ppp/ppp/bundle.c index 6b219913101..0c4d9d56648 100644 --- a/usr.sbin/ppp/ppp/bundle.c +++ b/usr.sbin/ppp/ppp/bundle.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $OpenBSD: bundle.c,v 1.52 2001/02/04 01:14:27 brian Exp $ + * $OpenBSD: bundle.c,v 1.53 2001/02/04 01:19:53 brian Exp $ */ #include <sys/param.h> @@ -130,7 +130,9 @@ bundle_NewPhase(struct bundle *bundle, u_int new) switch (new) { case PHASE_DEAD: bundle->phase = new; +#ifdef HAVE_DES MPPE_MasterKeyValid = 0; +#endif log_DisplayPrompts(); break; |