kern/176597: commit references a PR

dfilter service dfilter at FreeBSD.ORG
Tue Feb 4 21:00:01 UTC 2014


The following reply was made to PR kern/176597; it has been noted by GNATS.

From: dfilter at FreeBSD.ORG (dfilter service)
To: bug-followup at FreeBSD.org
Cc:  
Subject: Re: kern/176597: commit references a PR
Date: Tue,  4 Feb 2014 20:52:41 +0000 (UTC)

 Author: ed
 Date: Tue Feb  4 20:52:33 2014
 New Revision: 261495
 URL: http://svnweb.freebsd.org/changeset/base/261495
 
 Log:
   Use right buffer to print to.
   
   PR:		kern/176597
   Submitted by:	Christoph Mallon <christoph mallon gmx de>
   MFC after:	2 weeks
 
 Modified:
   head/sys/dev/watchdog/watchdog.c
 
 Modified: head/sys/dev/watchdog/watchdog.c
 ==============================================================================
 --- head/sys/dev/watchdog/watchdog.c	Tue Feb  4 18:54:33 2014	(r261494)
 +++ head/sys/dev/watchdog/watchdog.c	Tue Feb  4 20:52:33 2014	(r261495)
 @@ -226,7 +226,7 @@ wd_timeout_cb(void *arg)
  #ifdef DDB
  	if ((wd_pretimeout_act & WD_SOFT_DDB)) {
  		char kdb_why[80];
 -		snprintf(kdb_why, sizeof(buf), "watchdog %s timeout", type);
 +		snprintf(kdb_why, sizeof(kdb_why), "watchdog %s timeout", type);
  		kdb_backtrace();
  		kdb_enter(KDB_WHY_WATCHDOG, kdb_why);
  	}
 _______________________________________________
 svn-src-all at freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-src-all
 To unsubscribe, send any mail to "svn-src-all-unsubscribe at freebsd.org"
 


More information about the freebsd-bugs mailing list