From 152e878f4c8d8bda76e7b1936928335f599171ab Mon Sep 17 00:00:00 2001 From: Marcelo Araujo Date: Mon, 16 May 2016 02:35:23 +0000 Subject: [PATCH] When a group contains a non-existent user, make the warning message more helpful by mentioning the group name. Obtained from: OpenBSD (cvs 1.19) --- usr.sbin/ypldap/ypldap.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/usr.sbin/ypldap/ypldap.c b/usr.sbin/ypldap/ypldap.c index 776227032c90..7042c4c33cfb 100644 --- a/usr.sbin/ypldap/ypldap.c +++ b/usr.sbin/ypldap/ypldap.c @@ -243,9 +243,8 @@ main_create_user_groups(struct env *env) if ((ue = RB_FIND(user_name_tree, env->sc_user_names_t, &ukey)) == NULL) { /* User not found */ - log_warnx("main: user: %s is referenced as a " - "group member, but can't be found in the " - "users map.\n", ukey.ue_line); + log_warnx("main: unknown user %s in group %s\n", + ukey.ue_line, ge->ge_line); if (bp != NULL) *(bp-1) = ','; continue;