From c0fbe5c0e7e98fb53f0b1abd96cc882597dc060c Mon Sep 17 00:00:00 2001 From: Rob Savoye Date: Sun, 11 Mar 2012 11:36:57 -0600 Subject: [PATCH] improve error message and fix typo. Bug #35736 --- libbase/curl_adapter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libbase/curl_adapter.cpp b/libbase/curl_adapter.cpp index f6dbaea9a..b5bdab43e 100644 --- a/libbase/curl_adapter.cpp +++ b/libbase/curl_adapter.cpp @@ -1088,7 +1088,7 @@ CurlStreamFile::readNonBlocking(void *dst, std::streamsize bytes) fillCacheNonBlocking(); if ( _error ) { // I guess an exception would be thrown in this case ? - log_error(_("curl adaptor's fillCacheNonBlocking set _error rather then throwing an exception")); + log_error(_("curl adaptor's fillCacheNonBlocking method sets an error condition rather than throwing an exception")); return 0; } -- 2.11.4.GIT