From owner-cvs-src@FreeBSD.ORG Mon Jul 28 01:14:28 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3682C37B401; Mon, 28 Jul 2003 01:14:28 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CE7F243F75; Mon, 28 Jul 2003 01:14:27 -0700 (PDT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h6S8ER0U079510; Mon, 28 Jul 2003 01:14:27 -0700 (PDT) (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h6S8ERSL079509; Mon, 28 Jul 2003 01:14:27 -0700 (PDT) Message-Id: <200307280814.h6S8ERSL079509@repoman.freebsd.org> From: Hartmut Brandt Date: Mon, 28 Jul 2003 01:14:27 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/atm/atm Makefile atm.c atm.h atm_eni.c atm_fore200.c atm_inet.c atm_print.c atm_set.c atm_show.c atm_subr.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Jul 2003 08:14:28 -0000 harti 2003/07/28 01:14:27 PDT FreeBSD src repository Modified files: sbin/atm/atm Makefile atm.c atm.h atm_eni.c atm_fore200.c atm_inet.c atm_print.c atm_set.c atm_show.c atm_subr.c Log: Make atm WARNS=6 clean. The changes are mostly: - remove some instances of __P() - use real prototypes and un-K&R function headers - constify where necessary (mostly strings and structures containing strings) - make functions and variables static that need not to be global - tag unused function parameters as __unused Testing: a fresh universe Revision Changes Path 1.8 +1 -1 src/sbin/atm/atm/Makefile 1.6 +72 -95 src/sbin/atm/atm/atm.c 1.6 +44 -71 src/sbin/atm/atm/atm.h 1.6 +7 -2 src/sbin/atm/atm/atm_eni.c 1.6 +11 -3 src/sbin/atm/atm/atm_fore200.c 1.6 +13 -13 src/sbin/atm/atm/atm_inet.c 1.7 +38 -44 src/sbin/atm/atm/atm_print.c 1.6 +8 -21 src/sbin/atm/atm/atm_set.c 1.7 +57 -89 src/sbin/atm/atm/atm_show.c 1.7 +46 -41 src/sbin/atm/atm/atm_subr.c