From owner-freebsd-bugs@FreeBSD.ORG Sat Oct 29 21:30:17 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4C3CF16A41F for ; Sat, 29 Oct 2005 21:30:17 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C93E443D48 for ; Sat, 29 Oct 2005 21:30:16 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j9TLUGtQ004165 for ; Sat, 29 Oct 2005 21:30:16 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j9TLUGpZ004164; Sat, 29 Oct 2005 21:30:16 GMT (envelope-from gnats) Resent-Date: Sat, 29 Oct 2005 21:30:16 GMT Resent-Message-Id: <200510292130.j9TLUGpZ004164@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Frank Laszlo Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E403F16A41F for ; Sat, 29 Oct 2005 21:20:38 +0000 (GMT) (envelope-from laszlof@ritamari.vonostingroup.com) Received: from ritamari.vonostingroup.com (ritamari.vonostingroup.com [216.144.193.230]) by mx1.FreeBSD.org (Postfix) with ESMTP id 92A8843D46 for ; Sat, 29 Oct 2005 21:20:38 +0000 (GMT) (envelope-from laszlof@ritamari.vonostingroup.com) Received: from laszlof by ritamari.vonostingroup.com with local (Exim 4.54 (FreeBSD)) id 1EVy82-0009vs-Dx for FreeBSD-gnats-submit@freebsd.org; Sat, 29 Oct 2005 17:20:42 -0400 Message-Id: Date: Sat, 29 Oct 2005 17:20:42 -0400 From: Frank Laszlo To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: bin/88201: [PATCH]: usr.sbin/arp/arp.c: Possible typo. X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Frank Laszlo List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Oct 2005 21:30:17 -0000 >Number: 88201 >Category: bin >Synopsis: [PATCH]: usr.sbin/arp/arp.c: Possible typo. >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Oct 29 21:30:15 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Frank Laszlo >Release: FreeBSD 5.4-STABLE i386 >Organization: >Environment: System: FreeBSD ritamari.vonostingroup.com 5.4-STABLE FreeBSD 5.4-STABLE #0: Thu Jun 9 22:20:56 EDT 2005 laszlof@ritamari.vonostingroup.com:/usr/obj/usr/src/sys/RITAMARI i386 >Description: usr.sbin/arp/arp.c contains the following code snipplet: 384: if (sdl->sdl_family != AF_LINK) { 385: printf("cannot intuit interface index and type for %s\n", host); 386: return (1); 387: } After recieving this error message myself, I was wondering what "intuit" means. Google comes up with nothing applicable to its definition. Maybe this is supposed to be "initiate." The attached patch fixes this possible typo. Thanks >How-To-Repeat: >Fix: --- arp.diff begins here --- --- usr.sbin/arp/arp.c.orig Sat Oct 29 17:15:04 2005 +++ usr.sbin/arp/arp.c Sat Oct 29 17:15:33 2005 @@ -382,7 +382,7 @@ } if (sdl->sdl_family != AF_LINK) { - printf("cannot intuit interface index and type for %s\n", host); + printf("cannot initiate interface index and type for %s\n", host); return (1); } sdl_m.sdl_type = sdl->sdl_type; --- arp.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: