# HG changeset patch # User John W. Eaton # Date 1390668482 18000 # Node ID af04b9d9f7ed5c603e27d10e2ef8fc1cfa07dc84 # Parent 4da51757372f51c1f725b271493057ab784dba3b allow urlwrite to work again * urlwrite.cc (Furlwrite): Reverse sense of test when checking whether url_transfer object is valid. diff -r 4da51757372f -r af04b9d9f7ed libinterp/corefcn/urlwrite.cc --- a/libinterp/corefcn/urlwrite.cc Sat Jan 25 14:40:11 2014 +0100 +++ b/libinterp/corefcn/urlwrite.cc Sat Jan 25 11:48:02 2014 -0500 @@ -418,7 +418,7 @@ url_transfer curl = url_transfer (url, ofile); - if (! curl.is_valid ()) + if (curl.is_valid ()) { curl.http_action (param, method);