Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 15 Dec 2015 15:46:15 +0000 (UTC)
From:      Marcelo Araujo <araujo@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r292273 - head/usr.sbin/ypldap
Message-ID:  <201512151546.tBFFkF2S083647@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: araujo
Date: Tue Dec 15 15:46:14 2015
New Revision: 292273
URL: https://svnweb.freebsd.org/changeset/base/292273

Log:
  Remove a garbage printf used for debug.
  
  Approved by:	bapt (mentor implicit)

Modified:
  head/usr.sbin/ypldap/ldapclient.c

Modified: head/usr.sbin/ypldap/ldapclient.c
==============================================================================
--- head/usr.sbin/ypldap/ldapclient.c	Tue Dec 15 15:42:42 2015	(r292272)
+++ head/usr.sbin/ypldap/ldapclient.c	Tue Dec 15 15:46:14 2015	(r292273)
@@ -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");



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201512151546.tBFFkF2S083647>