diff options
author | brian <brian@FreeBSD.org> | 1998-08-26 18:07:57 +0000 |
---|---|---|
committer | brian <brian@FreeBSD.org> | 1998-08-26 18:07:57 +0000 |
commit | ef284dc009ccd53edb53818985a9892c7f8a614b (patch) | |
tree | 1871f6ab1acf03428a038e3d64d575a243b3c20f /usr.sbin/ppp/chap.c | |
parent | ccf90b2b068cb10138891a60bdc6c53552a37f31 (diff) | |
download | FreeBSD-src-ef284dc009ccd53edb53818985a9892c7f8a614b.zip FreeBSD-src-ef284dc009ccd53edb53818985a9892c7f8a614b.tar.gz |
Fix some OpenBSD/alpha warnings
Diffstat (limited to 'usr.sbin/ppp/chap.c')
-rw-r--r-- | usr.sbin/ppp/chap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ppp/chap.c b/usr.sbin/ppp/chap.c index 66ffe73..c2652d6 100644 --- a/usr.sbin/ppp/chap.c +++ b/usr.sbin/ppp/chap.c @@ -17,7 +17,7 @@ * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. * - * $Id: chap.c,v 1.35 1998/07/28 21:54:29 brian Exp $ + * $Id: chap.c,v 1.36 1998/08/07 18:42:47 brian Exp $ * * TODO: */ @@ -29,10 +29,10 @@ #ifdef HAVE_DES #include <md4.h> -#include <string.h> #endif #include <md5.h> #include <stdlib.h> +#include <string.h> #include <termios.h> #include "mbuf.h" |