return NULL terminator to indicate successful read; fixed typo
authorerickson <erickson@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Fri, 16 Jul 2010 19:02:37 +0000 (19:02 +0000)
committererickson <erickson@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Fri, 16 Jul 2010 19:02:37 +0000 (19:02 +0000)
git-svn-id: svn://svn.open-ils.org/ILS/trunk@16966 dcc99617-32d9-48b4-a31d-7c20da2025e4

Open-ILS/src/support-scripts/marc_stream_importer.pl

index a6bcbba..99a80fc 100755 (executable)
@@ -380,7 +380,8 @@ sub process_request {   # The core Net::Server method
 
     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;
 }