summaryrefslogtreecommitdiffstats
path: root/monitor_wrap.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2002-03-13 13:46:44 +1100
committerDamien Miller <djm@mindrot.org>2002-03-13 13:46:44 +1100
commitc33566fef39251e52f3ae1dccbff9ef2cb6a53be (patch)
tree106e87a24c581a8163a77197c2afdba4845e862e /monitor_wrap.c
parentec960955e9cba9d612159ccda4c7ec81f3ac231a (diff)
Compile fixes for LinuxPRIVSEP
Diffstat (limited to 'monitor_wrap.c')
-rw-r--r--monitor_wrap.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/monitor_wrap.c b/monitor_wrap.c
index 798e9353..5d7f4ba7 100644
--- a/monitor_wrap.c
+++ b/monitor_wrap.c
@@ -186,7 +186,10 @@ mm_getpwnamallow(int socket, const char *login, int *allowed)
pw->pw_name = buffer_get_string(&m, NULL);
pw->pw_passwd = buffer_get_string(&m, NULL);
pw->pw_gecos = buffer_get_string(&m, NULL);
+#if defined(HAVE_PW_CLASS_IN_PASSWD)
+#error XXX - get an empty string instead to preserve protocol?
pw->pw_class = buffer_get_string(&m, NULL);
+#endif
pw->pw_dir = buffer_get_string(&m, NULL);
pw->pw_shell = buffer_get_string(&m, NULL);
buffer_free(&m);
@@ -200,7 +203,9 @@ pwfree(struct passwd *pw)
xfree(pw->pw_name);
xfree(pw->pw_passwd);
xfree(pw->pw_gecos);
+#if defined(HAVE_PW_CLASS_IN_PASSWD)
xfree(pw->pw_class);
+#endif
xfree(pw->pw_dir);
xfree(pw->pw_shell);
xfree(pw);