summaryrefslogtreecommitdiff
path: root/auth2-pam.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2001-02-16 13:03:04 +1100
committerDamien Miller <djm@mindrot.org>2001-02-16 13:03:04 +1100
commit8fa2bda561b7ce6bb79eff8023198e97580b089d (patch)
treecbfa1b9e087d521bb0d3298a71b121e9b9fa4b69 /auth2-pam.c
parent79438cc03040e22a053f2cb02e42483272b458df (diff)
KNF comment block
Diffstat (limited to 'auth2-pam.c')
-rw-r--r--auth2-pam.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/auth2-pam.c b/auth2-pam.c
index 79bd4a813..490921d84 100644
--- a/auth2-pam.c
+++ b/auth2-pam.c
@@ -1,5 +1,5 @@
1#include "includes.h" 1#include "includes.h"
2RCSID("$Id: auth2-pam.c,v 1.9 2001/02/15 00:51:32 djm Exp $"); 2RCSID("$Id: auth2-pam.c,v 1.10 2001/02/16 02:03:04 djm Exp $");
3 3
4#ifdef USE_PAM 4#ifdef USE_PAM
5#include <security/pam_appl.h> 5#include <security/pam_appl.h>
@@ -107,10 +107,12 @@ do_pam_conversation_kbd_int(int num_msg, const struct pam_message **msg,
107 packet_send(); 107 packet_send();
108 packet_write_wait(); 108 packet_write_wait();
109 109
110 /* Grabbing control of execution and spinning until we get what 110 /*
111 * Grabbing control of execution and spinning until we get what
111 * we want is probably rude, but it seems to work properly, and 112 * we want is probably rude, but it seems to work properly, and
112 * the client *should* be in lock-step with us, so the loop should 113 * the client *should* be in lock-step with us, so the loop should
113 * only be traversed once. */ 114 * only be traversed once.
115 */
114 while(context_pam2.finished == 0) { 116 while(context_pam2.finished == 0) {
115 done = 1; 117 done = 1;
116 dispatch_run(DISPATCH_BLOCK, &done, appdata_ptr); 118 dispatch_run(DISPATCH_BLOCK, &done, appdata_ptr);