Date: Sat, 29 Oct 2005 17:20:42 -0400 From: Frank Laszlo <laszlof@vonostingroup.com> To: FreeBSD-gnats-submit@FreeBSD.org Subject: bin/88201: [PATCH]: usr.sbin/arp/arp.c: Possible typo. Message-ID: <E1EVy82-0009vs-Dx@ritamari.vonostingroup.com> Resent-Message-ID: <200510292130.j9TLUGpZ004164@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>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:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?E1EVy82-0009vs-Dx>