From owner-freebsd-audit Sat Jun 8 18:45:20 2002 Delivered-To: freebsd-audit@freebsd.org Received: from mailsrv.otenet.gr (mailsrv.otenet.gr [195.170.0.5]) by hub.freebsd.org (Postfix) with ESMTP id 77A7E37B401 for ; Sat, 8 Jun 2002 18:45:17 -0700 (PDT) Received: from hades.hell.gr (patr530-a091.otenet.gr [212.205.215.91]) by mailsrv.otenet.gr (8.12.3/8.12.3) with ESMTP id g591jFZN016734 for ; Sun, 9 Jun 2002 04:45:15 +0300 (EEST) Received: from hades.hell.gr (hades [127.0.0.1]) by hades.hell.gr (8.12.3/8.12.3) with ESMTP id g591jDUP072900 for ; Sun, 9 Jun 2002 04:45:14 +0300 (EEST) (envelope-from keramida@FreeBSD.org) Received: (from charon@localhost) by hades.hell.gr (8.12.3/8.12.3/Submit) id g591jDcR072892 for audit@FreeBSD.org; Sun, 9 Jun 2002 04:45:13 +0300 (EEST) (envelope-from keramida@FreeBSD.org) Date: Sun, 9 Jun 2002 04:45:12 +0300 From: Giorgos Keramidas To: audit@FreeBSD.org Subject: minor header change in src/bin/dd/misc.c Message-ID: <20020609014512.GA72307@hades.hell.gr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Sender: owner-freebsd-audit@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG The source of bin/dd/misc.c doesn't use any of the functions of but uses strlen, which is defined in . The following seems to fix the only warning this file triggers for me. Does it seem ok to you all? %%% Index: misc.c =================================================================== RCS file: /home/ncvs/src/bin/dd/misc.c,v retrieving revision 1.23 diff -u -r1.23 misc.c --- misc.c 2 Feb 2002 06:24:12 -0000 1.23 +++ misc.c 9 Jun 2002 01:42:12 -0000 @@ -49,7 +49,7 @@ #include #include #include -#include +#include #include #include "dd.h" %%% To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-audit" in the body of the message