From laszlof@ritamari.vonostingroup.com  Sat Oct 29 21:20:38 2005
Return-Path: <laszlof@ritamari.vonostingroup.com>
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id E403F16A41F
	for <FreeBSD-gnats-submit@freebsd.org>; 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 <FreeBSD-gnats-submit@freebsd.org>; 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: <E1EVy82-0009vs-Dx@ritamari.vonostingroup.com>
Date: Sat, 29 Oct 2005 17:20:42 -0400
From: Frank Laszlo <laszlof@vonostingroup.com>
Reply-To: Frank Laszlo <laszlof@vonostingroup.com>
To: FreeBSD-gnats-submit@freebsd.org
Cc:
Subject: [PATCH]: usr.sbin/arp/arp.c: Possible typo.
X-Send-Pr-Version: 3.113
X-GNATS-Notify:

>Number:         88201
>Category:       bin
>Synopsis:       [PATCH]: arp(8): usr.sbin/arp/arp.c: Possible typo.
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-bugs
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Sat Oct 29 21:30:15 GMT 2005
>Closed-Date:    Mon Nov 07 11:41:55 GMT 2005
>Last-Modified:  Mon Nov 07 11:41:55 GMT 2005
>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:
State-Changed-From-To: open->closed 
State-Changed-By: glebius 
State-Changed-When: Mon Nov 7 11:40:27 GMT 2005 
State-Changed-Why:  
The verb "intuit" in this sentence means that arp(8) can't find 
an applicable interface for given entry. "intuit" is a valid verb, 
see: 

http://www.m-w.com/dictionary/intuit 

http://www.freebsd.org/cgi/query-pr.cgi?pr=88201 
>Unformatted:
