From 417659b757afc85fc437f3da462c09a4b86c1282 Mon Sep 17 00:00:00 2001 From: Sergey Poznyakoff Date: Fri, 6 Mar 2020 14:38:59 +0200 Subject: Version 0.5 * NEWS: Update. * configure.ac: Raise version number. * examples/lib/LWP/Ping903.pm: Remove. * examples/README: Mention Mangemanche. Remove references to lib/LWP/Ping903.pm * examples/dbload: Revert to LWP::UserAgent * examples/inspect: Likewise. * examples/ipadd: Likewise. * examples/ipdel: Likewise. --- examples/inspect | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'examples/inspect') diff --git a/examples/inspect b/examples/inspect index af3d3de..0aa2fb5 100755 --- a/examples/inspect +++ b/examples/inspect @@ -73,7 +73,7 @@ L. use strict; use warnings; -use LWP::Ping903; +use LWP::UserAgent; use HTTP::Status qw(:constants); use JSON; use Getopt::Long qw(:config gnu_getopt no_ignore_case); @@ -99,7 +99,7 @@ GetOptions( ) or exit(1); die "too many arguments; try `$0 --help' for more info\n" if @ARGV; -my $ua = new LWP::Ping903; +my $ua = new LWP::UserAgent; my $response = $ua->get("$baseurl/config"); unless ($response->is_success) { -- cgit v1.2.1