bin/88201: [PATCH]: usr.sbin/arp/arp.c: Possible typo.

Frank Laszlo laszlof at vonostingroup.com
Sat Oct 29 14:30:17 PDT 2005


>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 at 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:


More information about the freebsd-bugs mailing list