From 8d845e3a1a4d8f05b20b5727dd578ea1b1e731e9 Mon Sep 17 00:00:00 2001 From: Marco Timpano Date: Wed, 22 Feb 2006 12:03:07 +0100 Subject: [PATCH] winedos: Fixed a couple of typos in ppdev. --- dlls/winedos/ppdev.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/winedos/ppdev.c b/dlls/winedos/ppdev.c index 3a25de9a21e..527ffe26e0c 100644 --- a/dlls/winedos/ppdev.c +++ b/dlls/winedos/ppdev.c @@ -169,7 +169,7 @@ char IO_pp_init(void) } /* Check for the minimum required IOCTLS */ if ((ioctl(fd,PPRDATA,&res))|| - (ioctl(fd,PPRCONTROL,&res))|| + (ioctl(fd,PPRSTATUS,&res))|| (ioctl(fd,PPRCONTROL,&res))) { ERR("PPUSER IOCTL not available for parport device %s\n",buffer); @@ -289,7 +289,7 @@ int IO_pp_inp(int port, DWORD* res) /* IO_pp_outp * - * Check if we can satisfy the INP command with some of the configured PPDEV deviced + * Check if we can satisfy the OUTP command with some of the configured PPDEV deviced * Return NULL on success */ BOOL IO_pp_outp(int port, DWORD* res)