Apply patch from Warren Layton to fix marc2sre.pl options
authordbs <dbs@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Fri, 18 Dec 2009 20:15:57 +0000 (20:15 +0000)
committerdbs <dbs@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Fri, 18 Dec 2009 20:15:57 +0000 (20:15 +0000)
Attached is a small patch (against trunk) which fixes the GetOptions
in marc2sre.xml. It fixes a small bug with the "idsubfield" parameter,
and changes "idfield" to accept a string instead of an int (to match
the behaviour of marc2bre.pl).

git-svn-id: svn://svn.open-ils.org/ILS/trunk@15196 dcc99617-32d9-48b4-a31d-7c20da2025e4

Open-ILS/src/extras/import/marc2sre.pl

index 49b3ba7..26121ba 100755 (executable)
@@ -29,8 +29,8 @@ my ($idfield, $count, $user, $password, $config, $marctype, $idsubfield, @files,
        ('001', 1, 'admin', 'open-ils', '/openils/conf/opensrf_core.xml', 'USMARC');
 
 GetOptions(
-       'idfield=i'     => \$idfield,
-       'idsubfield=a'  => \$idsubfield,
+       'idfield=s'     => \$idfield,
+       'idsubfield=s'  => \$idsubfield,
        'startid=i'     => \$count,
        'user=s'        => \$user,
        'password=s'    => \$password,