rpms/sane-backends/devel sane-backends-1.0.18-glibc-2.7.patch, 1.1, 1.2

Nils Philippsen (nphilipp) fedora-extras-commits at redhat.com
Wed Aug 8 13:02:15 UTC 2007


Author: nphilipp

Update of /cvs/pkgs/rpms/sane-backends/devel
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv31427

Modified Files:
	sane-backends-1.0.18-glibc-2.7.patch 
Log Message:
more instances of ...->open() fixed


sane-backends-1.0.18-glibc-2.7.patch:

Index: sane-backends-1.0.18-glibc-2.7.patch
===================================================================
RCS file: /cvs/pkgs/rpms/sane-backends/devel/sane-backends-1.0.18-glibc-2.7.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sane-backends-1.0.18-glibc-2.7.patch	8 Aug 2007 12:37:02 -0000	1.1
+++ sane-backends-1.0.18-glibc-2.7.patch	8 Aug 2007 13:02:12 -0000	1.2
@@ -1,5 +1,27 @@
+--- sane-backends-1.0.18/sanei/sanei_scsi.c.glibc-2.7	2005-11-24 23:08:49.000000000 +0100
++++ sane-backends-1.0.18/sanei/sanei_scsi.c	2007-08-08 15:01:07.000000000 +0200
+@@ -5028,7 +5028,7 @@ sanei_scsi_find_devices (const char *fin
+     (*plugInInterface)->Release (plugInInterface);
+     IOObjectRelease (scsiDevice);
+ 
+-    ioReturnValue = (*scsiDeviceInterface)->open (scsiDeviceInterface);
++    ioReturnValue = ((*scsiDeviceInterface)->open) (scsiDeviceInterface);
+     if (ioReturnValue != kIOReturnSuccess)
+       {
+ 	DBG (5, "Error opening SCSI interface (0x%08x)\n", ioReturnValue);
+--- sane-backends-1.0.18/backend/pixma_common.c.glibc-2.7	2006-06-11 22:53:05.000000000 +0200
++++ sane-backends-1.0.18/backend/pixma_common.c	2007-08-08 15:01:18.000000000 +0200
+@@ -449,7 +449,7 @@ pixma_open (unsigned devnr, pixma_t ** h
+   strncpy (s->id, pixma_get_device_id (devnr), sizeof (s->id));
+   s->ops = s->cfg->ops;
+   s->scanning = 0;
+-  error = s->ops->open (s);
++  error = (s->ops->open) (s);
+   if (error < 0)
+     goto rollback;
+   *handle = s;
 --- sane-backends-1.0.18/backend/plustek_pp.c.glibc-2.7	2006-02-19 12:32:24.000000000 +0100
-+++ sane-backends-1.0.18/backend/plustek_pp.c	2007-08-08 14:34:45.000000000 +0200
++++ sane-backends-1.0.18/backend/plustek_pp.c	2007-08-08 14:56:45.000000000 +0200
 @@ -258,7 +258,7 @@ static int drvopen(	Plustek_Device *dev 
  
      DBG( _DBG_INFO, "drvopen()\n" );
@@ -9,3 +31,14 @@
  
  	tsecs = 0;
  
+--- sane-backends-1.0.18/backend/mustek_pp.c.glibc-2.7	2005-04-16 15:06:37.000000000 +0200
++++ sane-backends-1.0.18/backend/mustek_pp.c	2007-08-08 15:01:30.000000000 +0200
+@@ -1152,7 +1152,7 @@ sane_open (SANE_String_Const devicename,
+ 
+ 	}
+ 	
+-	if ((status = dev->func->open (dev->port, dev->caps, &fd)) != SANE_STATUS_GOOD) {
++	if ((status = (dev->func->open) (dev->port, dev->caps, &fd)) != SANE_STATUS_GOOD) {
+ 
+ 		DBG (1, "sane_open: could not open device (%s)\n",
+ 				sane_strstatus (status));




More information about the fedora-extras-commits mailing list