diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2015-02-03 08:07:21 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2015-02-03 08:07:21 +0000 |
commit | 25965d0a52f45570b4ba6588959592830293681a (patch) | |
tree | e207d5cb8d22f07d0d82098e93f4d08b48a0660c /usr.bin/ssh | |
parent | 9b5f47c8a38c10b43abb6bbe763035d670333c09 (diff) |
missing ;
djm and mlarkin really having great interactions recently
Diffstat (limited to 'usr.bin/ssh')
-rw-r--r-- | usr.bin/ssh/ssh-pkcs11.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/ssh-pkcs11.c b/usr.bin/ssh/ssh-pkcs11.c index a7395be1f19..293c562d9c8 100644 --- a/usr.bin/ssh/ssh-pkcs11.c +++ b/usr.bin/ssh/ssh-pkcs11.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssh-pkcs11.c,v 1.16 2015/02/02 22:48:53 djm Exp $ */ +/* $OpenBSD: ssh-pkcs11.c,v 1.17 2015/02/03 08:07:20 deraadt Exp $ */ /* * Copyright (c) 2010 Markus Friedl. All rights reserved. * @@ -359,7 +359,7 @@ pkcs11_open_session(struct pkcs11_provider *p, CK_ULONG slotidx, char *pin) } if (login_required && pin) { rv = f->C_Login(session, CKU_USER, - (u_char *)pin, strlen(pin)) + (u_char *)pin, strlen(pin)); if (rv != CKR_OK && rv != CKR_USER_ALREADY_LOGGED_IN) { error("C_Login failed: %lu", rv); if ((rv = f->C_CloseSession(session)) != CKR_OK) |