diff options
author | Christian Pointner <equinox@helsinki.at> | 2016-05-25 14:15:22 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2016-05-25 14:15:22 (GMT) |
commit | 2fbd4bc628b28c88a45026a1ec4a324ca2bda417 (patch) | |
tree | 83e7097247d1b6eae1e0c401b1f91a7d1b2e0eec /rhautoimport-oi | |
parent | 25acf325139cc0f7ce59406bc083258aa1e8bfee (diff) |
make interface of fetch_parse_rss the same as fetch_parse_json from rhrdlibs
Diffstat (limited to 'rhautoimport-oi')
-rwxr-xr-x | rhautoimport-oi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/rhautoimport-oi b/rhautoimport-oi index 40b9059..0f5b9b4 100755 --- a/rhautoimport-oi +++ b/rhautoimport-oi @@ -97,9 +97,9 @@ if($current_id eq $id) { print "looking for files like '$bdfile' in RSS Feed\n"; print " -> $RSS_URL\n"; -my ($feed, $errstr) = rhautoimport::fetch_parse_rss($RSS_URL); -unless (defined $feed) { - print "Error fetching feed: $errstr\n"; +my ($result, $feed) = rhautoimport::fetch_parse_rss($RSS_URL); +unless ($result) { + print "Error fetching feed: $feed\n"; exit 1; } |