Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-3]: src/lib/libpam/modules/pam_skey Pull up revision 1.2 (request...



details:   https://anonhg.NetBSD.org/src/rev/cefdd36882b8
branches:  netbsd-3
changeset: 574966:cefdd36882b8
user:      tron <tron%NetBSD.org@localhost>
date:      Mon Mar 21 23:04:08 2005 +0000

description:
Pull up revision 1.2 (requested by christos in ticket #43):
Make S/Key prompt compliant with RFC 2289. Patch supplied by Dave Huang
in PR bin/23167.

diffstat:

 lib/libpam/modules/pam_skey/pam_skey.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 22e9f22316a8 -r cefdd36882b8 lib/libpam/modules/pam_skey/pam_skey.c
--- a/lib/libpam/modules/pam_skey/pam_skey.c    Mon Mar 21 21:27:27 2005 +0000
+++ b/lib/libpam/modules/pam_skey/pam_skey.c    Mon Mar 21 23:04:08 2005 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pam_skey.c,v 1.1 2005/02/27 21:01:59 thorpej Exp $     */
+/*     $NetBSD: pam_skey.c,v 1.1.2.1 2005/03/21 23:04:08 tron Exp $    */
 
 /*-
  * Copyright (c) 2005 The NetBSD Foundation, Inc.
@@ -37,7 +37,7 @@
  */
 
 #include <sys/cdefs.h>
-__RCSID("$NetBSD: pam_skey.c,v 1.1 2005/02/27 21:01:59 thorpej Exp $");
+__RCSID("$NetBSD: pam_skey.c,v 1.1.2.1 2005/03/21 23:04:08 tron Exp $");
 
 #include <sys/types.h>
 #include <string.h>
@@ -85,7 +85,7 @@
        }
 
        (void) snprintf(skprompt, sizeof(skprompt),
-           "Password [%s]:", skinfo);
+           "Password [ %s ]:", skinfo);
 
        retval = pam_get_authtok(pamh, PAM_AUTHTOK, &pass, skprompt);
        if (retval != PAM_SUCCESS)



Home | Main Index | Thread Index | Old Index