blob: ab81be6cfd62dbfa656709da54f1f5879dfec36d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
From cb4f2998992d1d39fa4629c2187832249c0a5932 Mon Sep 17 00:00:00 2001
From: Jay Sorg <jay.sorg@gmail.com>
Date: Sat, 22 Nov 2014 23:17:00 -0800
Subject: [PATCH] sesman: fix for --enable-nopam
---
sesman/verify_user.c | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/sesman/verify_user.c b/sesman/verify_user.c
index 49c475c..9dc77ef 100644
--- a/sesman/verify_user.c
+++ b/sesman/verify_user.c
@@ -102,6 +102,14 @@ auth_start_session(long in_val, int in_display)
}
/******************************************************************************/
+/* returns error */
+int DEFAULT_CC
+auth_stop_session(long in_val)
+{
+ return 0;
+}
+
+/******************************************************************************/
int DEFAULT_CC
auth_end(long in_val)
{
|