From 18159224dc46d9c3f3f0dddbc6a3eb32369e08a3 Mon Sep 17 00:00:00 2001 From: erickson Date: Fri, 16 Jul 2010 19:02:37 +0000 Subject: [PATCH] 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 --- Open-ILS/src/support-scripts/marc_stream_importer.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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; } -- 2.11.0