Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 24 Sep 2010 14:44:05 +0000 (UTC)
From:      Marius Strobl <marius@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r213102 - head/libexec/tftpd
Message-ID:  <201009241444.o8OEi5hs027879@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: marius
Date: Fri Sep 24 14:44:04 2010
New Revision: 213102
URL: http://svn.freebsd.org/changeset/base/213102

Log:
  Remove the duplicate logging of failed read requests, whose error message
  also was inappropriate as it triggered for every EACCESS and ENOTFOUND, not
  just the case the -n option is intended to deal with and thus really spammed
  us with ~20 messages in the default configuration when booting a diskless
  FreeBSD client, introduced with r207608 again.
  
  MFC after:	1 week

Modified:
  head/libexec/tftpd/tftpd.c

Modified: head/libexec/tftpd/tftpd.c
==============================================================================
--- head/libexec/tftpd/tftpd.c	Fri Sep 24 14:38:54 2010	(r213101)
+++ head/libexec/tftpd/tftpd.c	Fri Sep 24 14:44:04 2010	(r213102)
@@ -604,7 +604,6 @@ tftp_rrq(int peer, char *recvbuffer, ssi
 		 */
 		if (suppress_naks && *filename != '/' && ecode == ENOTFOUND)
 			exit(0);
-		tftp_log(LOG_ERR, "Prevent NAK storm");
 		send_error(peer, ecode);
 		exit(1);
 	}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201009241444.o8OEi5hs027879>