Skip Menu |

This queue is for tickets about the Crypt-U2F-Server CPAN distribution.

Report information
The Basics
Id: 114199
Status: resolved
Worked: 5 min
Priority: 0/
Queue: Crypt-U2F-Server

People
Owner: cavac [...] cavac.at
Requestors: ROBN [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 0.31
Fixed in: (no value)



Subject: [PATCH] Remove debug output
There's some debug output in ::Simple, this removes it.
Subject: 0001-Remove-debug-output.patch
diff --git a/lib/Crypt/U2F/Server/Simple.pm b/lib/Crypt/U2F/Server/Simple.pm index 0d3882b..f55125e 100644 --- a/lib/Crypt/U2F/Server/Simple.pm +++ b/lib/Crypt/U2F/Server/Simple.pm @@ -45,8 +45,6 @@ sub new { $refCount++; } - print "Test fail: ", Crypt::U2F::Server::u2fclib_getError(), "\n"; - my $ctx = Crypt::U2F::Server::u2fclib_get_context(); if(!defined($ctx) || !$ctx) { $errstr = Crypt::U2F::Server::u2fclib_getError(); @@ -202,13 +200,11 @@ sub setChallenge { sub authenticationChallenge { my ($self) = @_; - print "BLI\n"; if(!$self->setKeyHandle || !$self->setPublicKey) { return; } my $rc = Crypt::U2F::Server::u2fclib_calcAuthenticationChallenge($self->{ctx}); - print "BLUB\n"; if(!defined($rc) || !length($rc)) { $errstr = Crypt::U2F::Server::u2fclib_getError(); return;
On Thu May 05 19:50:21 2016, ROBN wrote: Show quoted text
> There's some debug output in ::Simple, this removes it.
Patched. Uploaded new version 0.40.
On Sat May 07 08:41:28 2016, CAVAC wrote: Show quoted text
> On Thu May 05 19:50:21 2016, ROBN wrote:
> > There's some debug output in ::Simple, this removes it.
> > Patched. Uploaded new version 0.40.