Subject: | Redundant argument in sprintf |
If the module is used with a module, then a new warning show up:
Redundant argument in sprintf at /opt/perl-5.26.0/lib/site_perl/5.26.0/OpenID/Login.pm line 40.
Problem is in the default value of ua. Probably it has to be rewritten to
return LWP::UserAgent->new(
agent => sprintf('OpenID-Login/%s ', __PACKAGE__->VERSION),
timeout => $TIMEOUT,
max_redirect => 0,
);
Currently the timeout & max_redirect options are ignored everywhere, even with older perls.