On 10.04.2019 03:29, Vincent Lefevre wrote: > On 2019-04-09 20:09:26 +0200, Branko Čibej wrote: >> The only problem with that idea is that svnseve doesn't use unscd at >> all, or any kind of LDAP access. > Are you so sure about that? A "strace svnserve -t"[*] shows it > reads the /etc/nsswitch.conf file. With "ltrace", I can see that > svn_user_get_name is called, and I'm wondering whether this is > the cause.
That just calls apr_uid_name_get(), so the call chain is svnserve->APR->glibc. The latter's implementation would look at nsswitch.conf. That suggests that is is related to user configuration somehow. But I don't know much about that topic. The name caching daemon is something glibc would use directly, most likely. -- Brane