aboutsummaryrefslogtreecommitdiff
path: root/server
diff options
context:
space:
mode:
authorNiall Sheridan <nsheridan@gmail.com>2016-05-22 00:52:06 +0100
committerNiall Sheridan <nsheridan@gmail.com>2016-05-22 00:52:06 +0100
commit1ca20e5b7a5fa803aced63ddaedf52d1064ce43a (patch)
tree86e86dbe51adb29c3f0011614a06676c1593753a /server
parentdda973d04d7cda9934a0fdd4ecb0d5055423a335 (diff)
Open the browser automatically
Diffstat (limited to 'server')
-rw-r--r--server/signer/signer.go2
1 files changed, 1 insertions, 1 deletions
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
}