svn commit: r189152 - in stable/7/sys: . cam/scsi contrib/pf dev/ath/ath_hal dev/cxgb

Edward Tomasz Napierala trasz at FreeBSD.org
Sat Feb 28 02:43:11 PST 2009


Author: trasz
Date: Sat Feb 28 10:43:10 2009
New Revision: 189152
URL: http://svn.freebsd.org/changeset/base/189152

Log:
  MFC r187243:
  
  Add missing 'break' statement.
  
  Reviewed by:	scottl
  Approved by:	rwatson (mentor)
  Sponsored by:	FreeBSD Foundation
  Found with:	Coverity Prevent(tm)
  CID:		3927

Modified:
  stable/7/sys/   (props changed)
  stable/7/sys/cam/scsi/scsi_all.c
  stable/7/sys/contrib/pf/   (props changed)
  stable/7/sys/dev/ath/ath_hal/   (props changed)
  stable/7/sys/dev/cxgb/   (props changed)

Modified: stable/7/sys/cam/scsi/scsi_all.c
==============================================================================
--- stable/7/sys/cam/scsi/scsi_all.c	Sat Feb 28 10:40:52 2009	(r189151)
+++ stable/7/sys/cam/scsi/scsi_all.c	Sat Feb 28 10:43:10 2009	(r189152)
@@ -2263,6 +2263,7 @@ scsi_print_inquiry(struct scsi_inquiry_d
 		break;
 	case T_NODEVICE:
 		dtype = "Uninstalled";
+		break;
 	default:
 		dtype = "unknown";
 		break;


More information about the svn-src-stable mailing list