svn commit: r322882 - stable/11/usr.sbin/ypldap

Marcelo Araujo araujo at FreeBSD.org
Fri Aug 25 08:24:30 UTC 2017


Author: araujo
Date: Fri Aug 25 08:24:29 2017
New Revision: 322882
URL: https://svnweb.freebsd.org/changeset/base/322882

Log:
  MFC r321846:
  
  Log when we have finished pushing users and groups.
  
  Obtained from:	OpenBSD (rev 1.4)

Modified:
  stable/11/usr.sbin/ypldap/entries.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/usr.sbin/ypldap/entries.c
==============================================================================
--- stable/11/usr.sbin/ypldap/entries.c	Fri Aug 25 08:21:02 2017	(r322881)
+++ stable/11/usr.sbin/ypldap/entries.c	Fri Aug 25 08:24:29 2017	(r322882)
@@ -92,6 +92,7 @@ flatten_entries(struct env *env)
 		free(tmp);
 	}
 	env->sc_user_lines = linep;
+	log_debug("done pushing users");
 
 	wrlen = env->sc_group_line_len;
 	if ((linep = calloc(1, env->sc_group_line_len + 1)) == NULL) {
@@ -117,6 +118,7 @@ flatten_entries(struct env *env)
 		wrlen -= len;
 	}
 	env->sc_group_lines = linep;
+	log_debug("done pushing groups");
 }
 
 int


More information about the svn-src-stable-11 mailing list