The following reply was made to PR bin/157732; it has been noted by GNATS. From: dfil...@freebsd.org (dfilter service) To: bug-follo...@freebsd.org Cc: Subject: Re: bin/157732: commit references a PR Date: Wed, 29 Jun 2011 16:46:21 +0000 (UTC)
Author: dim Date: Wed Jun 29 16:46:12 2011 New Revision: 223679 URL: http://svn.freebsd.org/changeset/base/223679 Log: MFC r223579: For some reason, contrib/traceroute/traceroute.c ensures MAXHOSTNAMELEN is defined, but then proceeds to use a hardcoded maximum hostname length of 64 anyway. Fix this by checking against MAXHOSTNAMELEN instead. PR: bin/157732 Modified: stable/7/contrib/traceroute/traceroute.c Directory Properties: stable/7/contrib/traceroute/ (props changed) Modified: stable/7/contrib/traceroute/traceroute.c ============================================================================== --- stable/7/contrib/traceroute/traceroute.c Wed Jun 29 16:43:44 2011 (r223678) +++ stable/7/contrib/traceroute/traceroute.c Wed Jun 29 16:46:12 2011 (r223679) @@ -1625,7 +1625,7 @@ gethostinfo(register char *hostname) register char **p; register u_int32_t addr, *ap; - if (strlen(hostname) > 64) { + if (strlen(hostname) >= MAXHOSTNAMELEN) { Fprintf(stderr, "%s: hostname \"%.32s...\" is too long\n", prog, hostname); exit(1); _______________________________________________ svn-src-...@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org" _______________________________________________ freebsd-bugs@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-bugs To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"