[Pcsclite-cvs-commit] r6088 - /trunk/Drivers/ccid/src/create_Info_plist.pl

rousseau at users.alioth.debian.org rousseau at users.alioth.debian.org
Sun Oct 30 12:52:51 UTC 2011


Author: rousseau
Date: Sun Oct 30 12:52:49 2011
New Revision: 6088

URL: http://svn.debian.org/wsvn/pcsclite/?sc=1&rev=6088
Log:
Convert "&" in a reader name into "&"

For example the name "Giesecke & Devrient" does not work on Mac OS X
using hotplug_macosx.c and generates the error:
00000683 hotplug_macosx.c:161:HPDriversGetFromDirectory() error getting
vendor ID from bundle

Modified:
    trunk/Drivers/ccid/src/create_Info_plist.pl

Modified: trunk/Drivers/ccid/src/create_Info_plist.pl
URL: http://svn.debian.org/wsvn/pcsclite/trunk/Drivers/ccid/src/create_Info_plist.pl?rev=6088&op=diff
==============================================================================
--- trunk/Drivers/ccid/src/create_Info_plist.pl (original)
+++ trunk/Drivers/ccid/src/create_Info_plist.pl Sun Oct 30 12:52:49 2011
@@ -59,6 +59,7 @@
 	# print "m: $manuf, p: $product, n: $name\n";
 	push @manuf, $manuf;
 	push @product, $product;
+	$name =~ s/&/&/g;
 	push @name, $name
 }
 close IN;




More information about the Pcsclite-cvs-commit mailing list