From 1ca20e5b7a5fa803aced63ddaedf52d1064ce43a Mon Sep 17 00:00:00 2001 From: Niall Sheridan Date: Sun, 22 May 2016 00:52:06 +0100 Subject: Open the browser automatically --- server/signer/signer.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'server') diff --git a/server/signer/signer.go b/server/signer/signer.go index 566ca98..8be5cad 100644 --- a/server/signer/signer.go +++ b/server/signer/signer.go @@ -48,7 +48,7 @@ func (s *KeySigner) SignUserKey(req *lib.SignRequest) (string, error) { marshaled := ssh.MarshalAuthorizedKey(cert) // Remove the trailing newline. marshaled = marshaled[:len(marshaled)-1] - log.Printf("Issued cert %s principals: %s fp: %s valid until: %s\n", cert.KeyId, cert.ValidPrincipals, fingerprint(pubkey), time.Unix(int64(cert.ValidBefore), 0).UTC()) + log.Printf("Issued cert id: %s principals: %s fp: %s valid until: %s\n", cert.KeyId, cert.ValidPrincipals, fingerprint(pubkey), time.Unix(int64(cert.ValidBefore), 0).UTC()) return string(marshaled), nil } -- cgit v1.2.3