Remove a garbage printf used for debug.

Approved by:	bapt (mentor implicit)
This commit is contained in:
Marcelo Araujo 2015-12-15 15:46:14 +00:00
parent 84e29f233a
commit 6d652b139e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=292273

View File

@ -377,10 +377,8 @@ ldapclient(int pipe_main2client[2])
bzero(&env, sizeof(env));
TAILQ_INIT(&env.sc_idms);
if ((pw = getpwnam(YPLDAP_USER)) == NULL) {
printf("ldapclient.c error\n");
if ((pw = getpwnam(YPLDAP_USER)) == NULL)
fatal("getpwnam");
}
if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, pipe_dns) == -1)
fatal("socketpair");