[open-ils-commits] r16966 - trunk/Open-ILS/src/support-scripts (erickson)
svn at svn.open-ils.org
svn at svn.open-ils.org
Fri Jul 16 15:02:42 EDT 2010
Author: erickson
Date: 2010-07-16 15:02:37 -0400 (Fri, 16 Jul 2010)
New Revision: 16966
Modified:
trunk/Open-ILS/src/support-scripts/marc_stream_importer.pl
Log:
return NULL terminator to indicate successful read; fixed typo
Modified: trunk/Open-ILS/src/support-scripts/marc_stream_importer.pl
===================================================================
--- trunk/Open-ILS/src/support-scripts/marc_stream_importer.pl 2010-07-16 18:28:27 UTC (rev 16965)
+++ trunk/Open-ILS/src/support-scripts/marc_stream_importer.pl 2010-07-16 19:02:37 UTC (rev 16966)
@@ -380,7 +380,8 @@
my $msg = '';
$msg .= "Successfully imported $imported records using merge profile '$profile'\n" if $imported;
- $msg .= "Faield to import $failed records\n" if $failed;
+ $msg .= "Failed to import $failed records\n" if $failed;
+ $msg .= "\x00";
print $client $msg;
}
More information about the open-ils-commits
mailing list