From owner-freebsd-current@FreeBSD.ORG Fri Aug 20 20:05:16 2004 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DE28E16A4CE for ; Fri, 20 Aug 2004 20:05:16 +0000 (GMT) Received: from av3-1-sn4.m-sp.skanova.net (av3-1-sn4.m-sp.skanova.net [81.228.10.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9A1CA43D53 for ; Fri, 20 Aug 2004 20:05:16 +0000 (GMT) (envelope-from pawel.worach@telia.com) Received: by av3-1-sn4.m-sp.skanova.net (Postfix, from userid 502) id D0A4637EAE; Fri, 20 Aug 2004 22:05:15 +0200 (CEST) Received: from smtp2-1-sn4.m-sp.skanova.net (smtp2-1-sn4.m-sp.skanova.net [81.228.10.183]) by av3-1-sn4.m-sp.skanova.net (Postfix) with ESMTP id C407137E43 for ; Fri, 20 Aug 2004 22:05:15 +0200 (CEST) Received: from corona.sajd.net (h80n2fls31o265.telia.com [217.208.189.80]) by smtp2-1-sn4.m-sp.skanova.net (Postfix) with ESMTP id AB4F537E56 for ; Fri, 20 Aug 2004 22:05:15 +0200 (CEST) Received: from [127.0.0.1] (sajd@localhost [127.0.0.1]) by corona.sajd.net (8.13.1/8.13.1) with ESMTP id i7KK5F7T004970 for ; Fri, 20 Aug 2004 22:05:15 +0200 (CEST) (envelope-from pawel.worach@telia.com) Message-ID: <4126597A.80107@telia.com> Date: Fri, 20 Aug 2004 22:05:14 +0200 From: Pawel Worach User-Agent: Mozilla Thunderbird 0.7.3 (X11/20040815) X-Accept-Language: en-us, en MIME-Version: 1.0 To: current@freebsd.org X-Enigmail-Version: 0.85.0.0 X-Enigmail-Supports: pgp-inline, pgp-mime Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: [patch] rbootd warning fix X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Aug 2004 20:05:17 -0000 Hi, Small patch to make gcc more quiet. /usr/src/libexec/rbootd/rbootd.c:154:35: warning: trigraph ??) ignored, use -trigraphs to enable Index: libexec/rbootd/rbootd.c =================================================================== RCS file: /export/ctm/cvs/src/libexec/rbootd/rbootd.c,v retrieving revision 1.13 diff -u -r1.13 rbootd.c --- libexec/rbootd/rbootd.c 7 Feb 2002 23:57:00 -0000 1.13 +++ libexec/rbootd/rbootd.c 20 Aug 2004 18:08:58 -0000 @@ -151,7 +151,7 @@ char *errmsg; if ((IntfName = BpfGetIntfName(&errmsg)) == NULL) { - syslog(LOG_NOTICE, "restarted (??)"); + syslog(LOG_NOTICE, "restarted (?)"); /* BpfGetIntfName() returns safe names, using %m */ syslog(LOG_ERR, "%s", errmsg); Exit(0); -- Pawel