svn commit: r188030 - head/sys/dev/kbdmux
Maksim Yevmenkin
emax at FreeBSD.org
Mon Feb 2 13:34:04 PST 2009
Author: emax
Date: Mon Feb 2 21:34:04 2009
New Revision: 188030
URL: http://svn.freebsd.org/changeset/base/188030
Log:
Properly retun error core from kbdmux_modevent()
Reported by: Christoph Mallon < christoph -dot- mallon -at- gmx -dot- de >
MFC after: 1 week
Modified:
head/sys/dev/kbdmux/kbdmux.c
Modified: head/sys/dev/kbdmux/kbdmux.c
==============================================================================
--- head/sys/dev/kbdmux/kbdmux.c Mon Feb 2 21:05:12 2009 (r188029)
+++ head/sys/dev/kbdmux/kbdmux.c Mon Feb 2 21:34:04 2009 (r188030)
@@ -1363,7 +1363,7 @@ kbdmux_modevent(module_t mod, int type,
break;
}
- return (0);
+ return (error);
}
DEV_MODULE(kbdmux, kbdmux_modevent, NULL);
More information about the svn-src-all
mailing list