aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/syscons/syscons.c
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>1995-10-14 07:08:09 +0000
committerBruce Evans <bde@FreeBSD.org>1995-10-14 07:08:09 +0000
commit21e00296ecc079e4d1a4084a8cbdb846653ea61a (patch)
tree19dec9102dcc38c76cf046f37519040704ad2e36 /sys/dev/syscons/syscons.c
parent278b94817a112af750a70ff1c0137b7615e63396 (diff)
Notes
Diffstat (limited to 'sys/dev/syscons/syscons.c')
-rw-r--r--sys/dev/syscons/syscons.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/sys/dev/syscons/syscons.c b/sys/dev/syscons/syscons.c
index 8ab9c9c6950e..327e329763fe 100644
--- a/sys/dev/syscons/syscons.c
+++ b/sys/dev/syscons/syscons.c
@@ -25,7 +25,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * $Id: syscons.c,v 1.124 1995/08/16 22:36:43 nate Exp $
+ * $Id: syscons.c,v 1.125 1995/09/10 21:35:12 bde Exp $
*/
#include "sc.h"
@@ -116,8 +116,9 @@ static u_short mouse_or_mask[16] = {
0x0c00, 0x0c00, 0x0600, 0x0600, 0x0000, 0x0000, 0x0000, 0x0000
};
+extern void none_saver(int blank);
void none_saver(int blank) { }
-void (*current_saver)() = none_saver;
+void (*current_saver) __P((int blank)) = none_saver;
/* OS specific stuff */
#ifdef not_yet_done
@@ -839,6 +840,9 @@ set_mouse_pos:
return 0;
case KDENABIO: /* allow io operations */
+ error = suser(p->p_ucred, &p->p_acflag);
+ if (error != 0)
+ return error;
fp = (struct trapframe *)p->p_md.md_regs;
fp->tf_eflags |= PSL_IOPL;
return 0;