diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2021-02-21 13:00:31 +0100 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2021-02-21 13:00:31 +0100 |
commit | 9bc3b5756ef3f36aaa0a1b28db71767c87e9446e (patch) | |
tree | 68989ac5488a714241302394624feb8da4f29da5 | |
parent | 7545130ac74c5a6f3dfa62087ac0287686248eec (diff) |
accountd: Fix prototype.
-rwxr-xr-x | lacme-accountd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lacme-accountd b/lacme-accountd index c8c6d5e..27e45cd 100755 --- a/lacme-accountd +++ b/lacme-accountd @@ -217,7 +217,7 @@ unless (defined $OPTS{stdio}) { # For each new connection, send the protocol version and the account key's # public parameters, then sign whatever comes in # -sub conn($$;$) { +sub conn($$$) { my ($in, $out, $id) = @_; $out->printflush( "$PROTOCOL_VERSION OK", "\r\n", $JWK_STR, "\r\n" ) or warn "print: $!"; |