From: erickson Date: Fri, 16 Jul 2010 19:02:37 +0000 (+0000) Subject: return NULL terminator to indicate successful read; fixed typo X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=18159224dc46d9c3f3f0dddbc6a3eb32369e08a3;p=evergreen%2Fbjwebb.git return NULL terminator to indicate successful read; fixed typo git-svn-id: svn://svn.open-ils.org/ILS/trunk@16966 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/src/support-scripts/marc_stream_importer.pl b/Open-ILS/src/support-scripts/marc_stream_importer.pl index a6bcbbab1..99a80fc64 100755 --- a/Open-ILS/src/support-scripts/marc_stream_importer.pl +++ b/Open-ILS/src/support-scripts/marc_stream_importer.pl @@ -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; }