diff options
author | Brian Somers <brian@FreeBSD.org> | 1999-02-18 19:45:06 +0000 |
---|---|---|
committer | Brian Somers <brian@FreeBSD.org> | 1999-02-18 19:45:06 +0000 |
commit | f522bee006875489bef6ca88c2b11b795ebc286a (patch) | |
tree | a8abe12a21070906b67960043e8d559d0362309b /usr.sbin/ppp/chap.h | |
parent | 4043c04fa5d9b8e05cde8720feff799ebef92d6c (diff) |
Build correctly when -DNOCRYPT is used.
Notes
Notes:
svn path=/head/; revision=44123
Diffstat (limited to 'usr.sbin/ppp/chap.h')
-rw-r--r-- | usr.sbin/ppp/chap.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.sbin/ppp/chap.h b/usr.sbin/ppp/chap.h index 160c9ca34dd8..46fe5f940992 100644 --- a/usr.sbin/ppp/chap.h +++ b/usr.sbin/ppp/chap.h @@ -15,7 +15,7 @@ * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. * - * $Id: chap.h,v 1.12 1999/02/11 10:14:07 brian Exp $ + * $Id: chap.h,v 1.13 1999/02/18 00:52:12 brian Exp $ * * TODO: */ @@ -40,8 +40,10 @@ struct chap { } child; struct authinfo auth; u_char challenge[CHAPCHALLENGELEN + AUTHLEN]; +#ifdef HAVE_DES unsigned NTRespSent : 1; /* Our last response */ int peertries; +#endif }; #define descriptor2chap(d) \ |