diff options
author | mks <mks@FreeBSD.org> | 1999-07-01 20:48:59 +0000 |
---|---|---|
committer | mks <mks@FreeBSD.org> | 1999-07-01 20:48:59 +0000 |
commit | 7707e35f12ca77282d0d391e98bf0db7bf1b734c (patch) | |
tree | 4a3901b074c8e4dd2814e00f82d841659871f67a /usr.sbin/atm/scspd/scsp_output.c | |
parent | 22e38b45b20e68f38edb59cfdd12a4422d39c6c4 (diff) | |
download | FreeBSD-src-7707e35f12ca77282d0d391e98bf0db7bf1b734c.zip FreeBSD-src-7707e35f12ca77282d0d391e98bf0db7bf1b734c.tar.gz |
Modify code to be -Wall'able.
PR: bin/11315
Diffstat (limited to 'usr.sbin/atm/scspd/scsp_output.c')
-rw-r--r-- | usr.sbin/atm/scspd/scsp_output.c | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/usr.sbin/atm/scspd/scsp_output.c b/usr.sbin/atm/scspd/scsp_output.c index 10ee493..7f8f1cd 100644 --- a/usr.sbin/atm/scspd/scsp_output.c +++ b/usr.sbin/atm/scspd/scsp_output.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: scsp_output.c,v 1.2 1998/07/12 20:49:45 johnc Exp $ + * @(#) $Id: scsp_output.c,v 1.1 1998/09/15 08:23:17 phk Exp $ * */ @@ -35,21 +35,12 @@ * */ -#ifndef lint -static char *RCSid = "@(#) $Id: scsp_output.c,v 1.2 1998/07/12 20:49:45 johnc Exp $"; -#endif - #include <sys/types.h> #include <sys/param.h> - -#include <errno.h> -#include <stdio.h> -#include <stdlib.h> -#include <syslog.h> #include <sys/socket.h> +#include <net/ethernet.h> #include <net/if.h> #include <netinet/in.h> -#include <netinet/if_ether.h> #include <netatm/port.h> #include <netatm/queue.h> #include <netatm/atm.h> @@ -57,12 +48,23 @@ static char *RCSid = "@(#) $Id: scsp_output.c,v 1.2 1998/07/12 20:49:45 johnc Ex #include <netatm/atm_sap.h> #include <netatm/atm_sys.h> #include <netatm/atm_ioctl.h> - + +#include <errno.h> #include <libatm.h> +#include <stdio.h> +#include <stdlib.h> +#include <string.h> +#include <syslog.h> +#include <unistd.h> + #include "scsp_msg.h" #include "scsp_if.h" #include "scsp_var.h" +#ifndef lint +__RCSID("@(#) $Id: scsp_output.c,v 1.1 1998/09/15 08:23:17 phk Exp $"); +#endif + /* * Put a long integer into the output buffer @@ -140,7 +142,7 @@ scsp_format_mcp(mcp, buff) char *buff; { int len; - char *idp, *odp; + char *odp; struct scsp_nmcp *smp; /* @@ -214,7 +216,6 @@ scsp_format_ext(exp, buff, blen) char *buff; int blen; { - int len; struct scsp_next *sep; /* @@ -269,7 +270,7 @@ scsp_format_atmarp(acsp, buff) char *buff; { char *cp; - int len, pkt_len, rc; + int len, pkt_len; struct scsp_atmarp_ncsa *sanp; /* @@ -432,7 +433,7 @@ scsp_format_csa(csap, buff) char *buff; { int len = 0; - char *idp, *odp; + char *odp; struct scsp_ncsa *scp; /* @@ -643,9 +644,8 @@ scsp_format_hello(hp, buff, blen) char *buff; int blen; { - int i, len, proc_len; + int len, proc_len; struct scsp_nhello *shp; - Scsp_id *idp; Scsp_id *ridp; /* |