diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2006-11-26 12:01:49 +0000 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2006-11-26 12:01:49 +0000 |
commit | 16be7ee5d30c8bce08f32563c4fa846a6928aed4 (patch) | |
tree | c733f223e6bf7a008991307dd30999a7df3aa110 /nslcd-server.c | |
parent | 70f10e2b6c10e7e47ab3377854e61a4534af79fb (diff) |
get rid of automount map information lookups through NSS as this is not used (at least not with glibc), autofs-ldap looks up the information on it's own (but does parse /etc/nsswitch.conf)
git-svn-id: http://arthurdejong.org/svn/nss-pam-ldapd/libnss_ldapd@124 ef36b2f9-881f-0410-afb5-c4e39611909c
Diffstat (limited to 'nslcd-server.c')
-rw-r--r-- | nslcd-server.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/nslcd-server.c b/nslcd-server.c index 2249e8a..fe9140d 100644 --- a/nslcd-server.c +++ b/nslcd-server.c @@ -151,10 +151,6 @@ void nslcd_server_handlerequest(int sock) { case NSLCD_ACTION_ALIAS_BYNAME: nslcd_alias_byname(fp); break; case NSLCD_ACTION_ALIAS_ALL: nslcd_alias_all(fp); break; -/* - case NSLCD_ACTION_AUTOMOUNT_BYNAME: nslcd_automount_byname(fp); break; - case NSLCD_ACTION_AUTOMOUNT_ALL: nslcd_automount_all(fp); break; -*/ case NSLCD_ACTION_ETHER_BYNAME: nslcd_ether_byname(fp); break; case NSLCD_ACTION_ETHER_BYETHER: nslcd_ether_byether(fp); break; case NSLCD_ACTION_ETHER_ALL: nslcd_ether_all(fp); break; @@ -186,7 +182,7 @@ void nslcd_server_handlerequest(int sock) case NSLCD_ACTION_SHADOW_BYNAME: nslcd_shadow_byname(fp); break; case NSLCD_ACTION_SHADOW_ALL: nslcd_shadow_all(fp); break; default: - log_log(LOG_DEBUG,"invalid request id (%d)",(int)tmpint32); + log_log(LOG_WARNING,"invalid request id: %d",(int)tmpint32); break; } /* we're done with the request */ |