svn commit: r270786 - head/sys/dev/vt

Jean-Sebastien Pedron dumbbell at FreeBSD.org
Fri Aug 29 08:20:04 UTC 2014


Author: dumbbell
Date: Fri Aug 29 08:20:03 2014
New Revision: 270786
URL: http://svnweb.freebsd.org/changeset/base/270786

Log:
  vt(4): Indicate that KDSETRAD case falls through the next case
  
  CID:		1229953
  MFC after:	1 week

Modified:
  head/sys/dev/vt/vt_core.c

Modified: head/sys/dev/vt/vt_core.c
==============================================================================
--- head/sys/dev/vt/vt_core.c	Fri Aug 29 08:16:31 2014	(r270785)
+++ head/sys/dev/vt/vt_core.c	Fri Aug 29 08:20:03 2014	(r270786)
@@ -1799,6 +1799,7 @@ skip_thunk:
 	case KDSETRAD:		/* set keyboard repeat & delay rates (old) */
 		if (*(int *)data & ~0x7f)
 			return (EINVAL);
+		/* FALLTHROUGH */
 	case GIO_KEYMAP:
 	case PIO_KEYMAP:
 	case GIO_DEADKEYMAP:


More information about the svn-src-all mailing list