From 8733d65e598e20f5a4415a710e9c51ab3a3d323d Mon Sep 17 00:00:00 2001 From: Heikki Korpela Date: Sun, 12 Aug 2001 12:03:04 +0000 Subject: #(endif|else) foo is incorrect, make it #endif /* foo */ deraadt@ ok --- usr.sbin/mopd/common/cmp.h | 6 +++--- usr.sbin/mopd/common/common.h | 6 +++--- usr.sbin/mopd/common/dl.h | 6 +++--- usr.sbin/mopd/common/file.c | 8 ++++---- usr.sbin/mopd/common/file.h | 6 +++--- usr.sbin/mopd/common/get.h | 6 +++--- usr.sbin/mopd/common/mopdef.h | 8 ++++---- usr.sbin/mopd/common/nma.h | 6 +++--- usr.sbin/mopd/common/nmadef.h | 6 +++--- usr.sbin/mopd/common/os.h | 6 +++--- usr.sbin/mopd/common/pf.h | 6 +++--- usr.sbin/mopd/common/print.h | 6 +++--- usr.sbin/mopd/common/put.h | 6 +++--- usr.sbin/mopd/common/rc.h | 6 +++--- 14 files changed, 44 insertions(+), 44 deletions(-) (limited to 'usr.sbin/mopd/common') diff --git a/usr.sbin/mopd/common/cmp.h b/usr.sbin/mopd/common/cmp.h index b5dee941f94..ceca08b87bb 100644 --- a/usr.sbin/mopd/common/cmp.h +++ b/usr.sbin/mopd/common/cmp.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cmp.h,v 1.2 1996/09/21 18:25:00 maja Exp $ */ +/* $OpenBSD: cmp.h,v 1.3 2001/08/12 12:03:03 heko Exp $ */ /* * Copyright (c) 1993-95 Mats O Jansson. All rights reserved. @@ -28,7 +28,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $OpenBSD: cmp.h,v 1.2 1996/09/21 18:25:00 maja Exp $ + * $OpenBSD: cmp.h,v 1.3 2001/08/12 12:03:03 heko Exp $ * */ @@ -43,4 +43,4 @@ int mopCmpEAddr __P((u_char *,u_char *)); __END_DECLS #endif -#endif _CMP_H_ +#endif /* _CMP_H_ */ diff --git a/usr.sbin/mopd/common/common.h b/usr.sbin/mopd/common/common.h index 5bf304eae06..de4871f4ea6 100644 --- a/usr.sbin/mopd/common/common.h +++ b/usr.sbin/mopd/common/common.h @@ -1,4 +1,4 @@ -/* $OpenBSD: common.h,v 1.2 1996/09/21 19:11:21 maja Exp $ */ +/* $OpenBSD: common.h,v 1.3 2001/08/12 12:03:03 heko Exp $ */ /* * Copyright (c) 1993-95 Mats O Jansson. All rights reserved. @@ -28,7 +28,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $OpenBSD: common.h,v 1.2 1996/09/21 19:11:21 maja Exp $ + * $OpenBSD: common.h,v 1.3 2001/08/12 12:03:03 heko Exp $ * */ @@ -91,4 +91,4 @@ struct dllist { long a_lseek; /* Keep track of pos in newfile */ }; -#endif _COMMON_H_ +#endif /* _COMMON_H_ */ diff --git a/usr.sbin/mopd/common/dl.h b/usr.sbin/mopd/common/dl.h index b44774951ba..8e01586efad 100644 --- a/usr.sbin/mopd/common/dl.h +++ b/usr.sbin/mopd/common/dl.h @@ -1,4 +1,4 @@ -/* $OpenBSD: dl.h,v 1.2 1996/09/21 19:11:29 maja Exp $ */ +/* $OpenBSD: dl.h,v 1.3 2001/08/12 12:03:03 heko Exp $ */ /* * Copyright (c) 1993-95 Mats O Jansson. All rights reserved. @@ -28,7 +28,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $OpenBSD: dl.h,v 1.2 1996/09/21 19:11:29 maja Exp $ + * $OpenBSD: dl.h,v 1.3 2001/08/12 12:03:03 heko Exp $ * */ @@ -43,4 +43,4 @@ void mopDumpDL __P((FILE *, u_char *, int)); __END_DECLS #endif -#endif _DL_H_ +#endif /* _DL_H_ */ diff --git a/usr.sbin/mopd/common/file.c b/usr.sbin/mopd/common/file.c index 015c4d4187e..b0e2bb51ec2 100644 --- a/usr.sbin/mopd/common/file.c +++ b/usr.sbin/mopd/common/file.c @@ -1,4 +1,4 @@ -/* $OpenBSD: file.c,v 1.3 1999/03/27 14:31:21 maja Exp $ */ +/* $OpenBSD: file.c,v 1.4 2001/08/12 12:03:03 heko Exp $ */ /* * Copyright (c) 1995-96 Mats O Jansson. All rights reserved. @@ -30,7 +30,7 @@ */ #ifndef LINT -static char rcsid[] = "$OpenBSD: file.c,v 1.3 1999/03/27 14:31:21 maja Exp $"; +static char rcsid[] = "$OpenBSD: file.c,v 1.4 2001/08/12 12:03:03 heko Exp $"; #endif #include "os.h" @@ -437,7 +437,7 @@ CheckAOutFile(fd) } else { return(-1); } -#endif NOAOUT +#endif /* NOAOUT */ } int @@ -671,7 +671,7 @@ GetAOutFileInfo(fd, load, xfr, a_text, a_text_fill, } return(0); -#endif NOAOUT +#endif /* NOAOUT */ } int diff --git a/usr.sbin/mopd/common/file.h b/usr.sbin/mopd/common/file.h index 1ca11bab037..3db49491dc0 100644 --- a/usr.sbin/mopd/common/file.h +++ b/usr.sbin/mopd/common/file.h @@ -1,4 +1,4 @@ -/* $OpenBSD: file.h,v 1.2 1996/09/21 19:11:33 maja Exp $ */ +/* $OpenBSD: file.h,v 1.3 2001/08/12 12:03:03 heko Exp $ */ /* * Copyright (c) 1993-95 Mats O Jansson. All rights reserved. @@ -28,7 +28,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $OpenBSD: file.h,v 1.2 1996/09/21 19:11:33 maja Exp $ + * $OpenBSD: file.h,v 1.3 2001/08/12 12:03:03 heko Exp $ * */ @@ -66,4 +66,4 @@ int GetFileInfo __P((int, u_long *, u_long *, int *, __END_DECLS #endif -#endif _FILE_H_ +#endif /* _FILE_H_ */ diff --git a/usr.sbin/mopd/common/get.h b/usr.sbin/mopd/common/get.h index 3c98cb61a3e..7af425ae5e4 100644 --- a/usr.sbin/mopd/common/get.h +++ b/usr.sbin/mopd/common/get.h @@ -1,4 +1,4 @@ -/* $OpenBSD: get.h,v 1.2 1996/09/21 19:11:36 maja Exp $ */ +/* $OpenBSD: get.h,v 1.3 2001/08/12 12:03:03 heko Exp $ */ /* * Copyright (c) 1993-95 Mats O Jansson. All rights reserved. @@ -28,7 +28,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $OpenBSD: get.h,v 1.2 1996/09/21 19:11:36 maja Exp $ + * $OpenBSD: get.h,v 1.3 2001/08/12 12:03:03 heko Exp $ * */ @@ -57,4 +57,4 @@ u_short mopGetLength __P((u_char *, int)); __END_DECLS #endif -#endif _GET_H_ +#endif /* _GET_H_ */ diff --git a/usr.sbin/mopd/common/mopdef.h b/usr.sbin/mopd/common/mopdef.h index f91eb674aac..a18f89d9102 100644 --- a/usr.sbin/mopd/common/mopdef.h +++ b/usr.sbin/mopd/common/mopdef.h @@ -1,4 +1,4 @@ -/* $OpenBSD: mopdef.h,v 1.2 1996/09/21 19:11:43 maja Exp $ */ +/* $OpenBSD: mopdef.h,v 1.3 2001/08/12 12:03:03 heko Exp $ */ /* * Copyright (c) 1993-95 Mats O Jansson. All rights reserved. @@ -28,7 +28,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $OpenBSD: mopdef.h,v 1.2 1996/09/21 19:11:43 maja Exp $ + * $OpenBSD: mopdef.h,v 1.3 2001/08/12 12:03:03 heko Exp $ * */ @@ -193,6 +193,6 @@ extern char rc_mcst[]; extern char dl_802_proto[]; extern char rc_802_proto[]; extern char lp_802_proto[]; -#endif MOPDEF_SUPRESS_EXTERN +#endif /* MOPDEF_SUPRESS_EXTERN */ -#endif _MOPDEF_H_ +#endif /* _MOPDEF_H_ */ diff --git a/usr.sbin/mopd/common/nma.h b/usr.sbin/mopd/common/nma.h index 06c68a465bb..5694dda2857 100644 --- a/usr.sbin/mopd/common/nma.h +++ b/usr.sbin/mopd/common/nma.h @@ -1,4 +1,4 @@ -/* $OpenBSD: nma.h,v 1.2 1996/09/21 19:11:46 maja Exp $ */ +/* $OpenBSD: nma.h,v 1.3 2001/08/12 12:03:03 heko Exp $ */ /* * Copyright (c) 1995 Mats O Jansson. All rights reserved. @@ -28,7 +28,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $OpenBSD: nma.h,v 1.2 1996/09/21 19:11:46 maja Exp $ + * $OpenBSD: nma.h,v 1.3 2001/08/12 12:03:03 heko Exp $ * */ @@ -45,4 +45,4 @@ char *nmaGetDevice __P((int)); __END_DECLS #endif -#endif _NMA_H_ +#endif /* _NMA_H_ */ diff --git a/usr.sbin/mopd/common/nmadef.h b/usr.sbin/mopd/common/nmadef.h index 3c2f40d1fd8..2df827ba62d 100644 --- a/usr.sbin/mopd/common/nmadef.h +++ b/usr.sbin/mopd/common/nmadef.h @@ -1,4 +1,4 @@ -/* $OpenBSD: nmadef.h,v 1.2 1996/09/21 19:11:48 maja Exp $ */ +/* $OpenBSD: nmadef.h,v 1.3 2001/08/12 12:03:03 heko Exp $ */ /* * Copyright (c) 1995 Mats O Jansson. All rights reserved. @@ -28,7 +28,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $OpenBSD: nmadef.h,v 1.2 1996/09/21 19:11:48 maja Exp $ + * $OpenBSD: nmadef.h,v 1.3 2001/08/12 12:03:03 heko Exp $ * */ @@ -180,4 +180,4 @@ #define NMA_C_SOFD_DW4 150 /* DSW-41/42 */ #define NMA_C_SOFD_TRA 175 /* DETRA-AA */ -#endif _NMADEF_H_ +#endif /* _NMADEF_H_ */ diff --git a/usr.sbin/mopd/common/os.h b/usr.sbin/mopd/common/os.h index 601b2601e97..e2fda75175b 100644 --- a/usr.sbin/mopd/common/os.h +++ b/usr.sbin/mopd/common/os.h @@ -1,4 +1,4 @@ -/* $OpenBSD: os.h,v 1.3 1997/08/18 03:11:31 millert Exp $ */ +/* $OpenBSD: os.h,v 1.4 2001/08/12 12:03:03 heko Exp $ */ /* * Copyright (c) 1994-95 Mats O Jansson. All rights reserved. @@ -28,7 +28,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $OpenBSD: os.h,v 1.3 1997/08/18 03:11:31 millert Exp $ + * $OpenBSD: os.h,v 1.4 2001/08/12 12:03:03 heko Exp $ * */ @@ -56,4 +56,4 @@ #define DEV_NEW_CONF -#endif _OS_H_ +#endif /* _OS_H_ */ diff --git a/usr.sbin/mopd/common/pf.h b/usr.sbin/mopd/common/pf.h index 117317b566f..3277d98e940 100644 --- a/usr.sbin/mopd/common/pf.h +++ b/usr.sbin/mopd/common/pf.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pf.h,v 1.2 1996/09/21 19:11:54 maja Exp $ */ +/* $OpenBSD: pf.h,v 1.3 2001/08/12 12:03:03 heko Exp $ */ /* * Copyright (c) 1993-95 Mats O Jansson. All rights reserved. @@ -28,7 +28,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $OpenBSD: pf.h,v 1.2 1996/09/21 19:11:54 maja Exp $ + * $OpenBSD: pf.h,v 1.3 2001/08/12 12:03:03 heko Exp $ * */ @@ -55,4 +55,4 @@ int pfWrite __P((int, u_char *, int, int)); __END_DECLS #endif -#endif _PF_H_ +#endif /* _PF_H_ */ diff --git a/usr.sbin/mopd/common/print.h b/usr.sbin/mopd/common/print.h index b0139ee564a..b7fa4d3af13 100644 --- a/usr.sbin/mopd/common/print.h +++ b/usr.sbin/mopd/common/print.h @@ -1,4 +1,4 @@ -/* $OpenBSD: print.h,v 1.2 1996/09/21 19:11:59 maja Exp $ */ +/* $OpenBSD: print.h,v 1.3 2001/08/12 12:03:03 heko Exp $ */ /* * Copyright (c) 1993-95 Mats O Jansson. All rights reserved. @@ -28,7 +28,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $OpenBSD: print.h,v 1.2 1996/09/21 19:11:59 maja Exp $ + * $OpenBSD: print.h,v 1.3 2001/08/12 12:03:03 heko Exp $ * */ @@ -61,4 +61,4 @@ void mopPrintInfo __P((FILE *, u_char *, int *, u_short, __END_DECLS #endif -#endif _PRINT_H_ +#endif /* _PRINT_H_ */ diff --git a/usr.sbin/mopd/common/put.h b/usr.sbin/mopd/common/put.h index c646700f2d2..4d3a08c0186 100644 --- a/usr.sbin/mopd/common/put.h +++ b/usr.sbin/mopd/common/put.h @@ -1,4 +1,4 @@ -/* $OpenBSD: put.h,v 1.2 1996/09/21 19:12:03 maja Exp $ */ +/* $OpenBSD: put.h,v 1.3 2001/08/12 12:03:03 heko Exp $ */ /* * Copyright (c) 1993-95 Mats O Jansson. All rights reserved. @@ -28,7 +28,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $OpenBSD: put.h,v 1.2 1996/09/21 19:12:03 maja Exp $ + * $OpenBSD: put.h,v 1.3 2001/08/12 12:03:03 heko Exp $ * */ @@ -55,4 +55,4 @@ void mopPutLength __P((u_char *, int, u_short)); __END_DECLS #endif -#endif _PUT_H_ +#endif /* _PUT_H_ */ diff --git a/usr.sbin/mopd/common/rc.h b/usr.sbin/mopd/common/rc.h index 83d55c2d14a..4a0cf294e89 100644 --- a/usr.sbin/mopd/common/rc.h +++ b/usr.sbin/mopd/common/rc.h @@ -1,4 +1,4 @@ -/* $OpenBSD: rc.h,v 1.2 1996/09/21 19:12:08 maja Exp $ */ +/* $OpenBSD: rc.h,v 1.3 2001/08/12 12:03:03 heko Exp $ */ /* * Copyright (c) 1993-95 Mats O Jansson. All rights reserved. @@ -28,7 +28,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $OpenBSD: rc.h,v 1.2 1996/09/21 19:12:08 maja Exp $ + * $OpenBSD: rc.h,v 1.3 2001/08/12 12:03:03 heko Exp $ * */ @@ -43,4 +43,4 @@ void mopDumpRC __P((FILE *, u_char *, int)); __END_DECLS #endif -#endif _RC_H_ +#endif /* _RC_H_ */ -- cgit v1.2.3