password is not required, set it to '' to quiet warnings

This commit is contained in:
Isaac Connor 2016-10-04 14:28:03 -04:00
parent 09c5e3012a
commit 84a18926d8
1 changed files with 1 additions and 1 deletions

View File

@ -374,7 +374,7 @@ else {
my $url_svc_device = shift;
$soap_version = shift;
my $username = shift;
my $password = shift;
my $password = @_ ? shift : '';
$client = ONVIF::Client->new( {
'url_svc_device' => $url_svc_device,