hc
2023-11-22 d0a428a6556ea5a006e22e28b0b1cd037885fe20
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
29
30
31
32
33
34
35
36
37
38
39
netkit-rsh:
Allow to build with no PAM enabled.
 
Upstream-Status: Inappropriate [ no upstream maintaner ]
 
Signed-off-by: Armin Kuster <akuster808@gmail.com>
 
Index: netkit-rsh-0.17/rshd/rshd.c
===================================================================
--- netkit-rsh-0.17.orig/rshd/rshd.c
+++ netkit-rsh-0.17/rshd/rshd.c
@@ -110,9 +110,11 @@ extern    char    **environ;
 static void error(const char *fmt, ...);
 static void doit(struct sockaddr *fromp, socklen_t fromlen);
 static char *getstr(char *, size_t, const char *);
+#ifdef USE_PAM
 static int err_conv(
     int, const struct pam_message **, struct pam_response **, void *
 );
+#endif /* USE_PAM */
 
 extern int _check_rhosts_file;
 
@@ -256,6 +258,7 @@ static void stderr_parent(int sock, int
 }
 
 
+#ifdef USE_PAM
 static int err_conv(
     int num_msg, const struct pam_message **msg,
     struct pam_response **resp, void *appdata_ptr
@@ -266,6 +269,7 @@ static int err_conv(
     (void) appdata_ptr;
     return PAM_CONV_ERR;
 }
+#endif
 
 static struct passwd *doauth(const char *remuser, 
                  const char *hostname,