From: Arran Cudbard-Bell Date: Fri, 31 Mar 2017 19:55:16 +0000 (-0400) Subject: Use a colon to match the value fmt X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=993176d7bb7a2135fe2e13177abf662ceba00d26;p=thirdparty%2Ffreeradius-server.git Use a colon to match the value fmt --- diff --git a/src/main/util.c b/src/main/util.c index 2a09bf836df..30e3fc8f7c4 100644 --- a/src/main/util.c +++ b/src/main/util.c @@ -1299,7 +1299,7 @@ void rad_file_error(int num) if (rad_getpwuid(NULL, &user, geteuid()) < 0) goto finish; if (rad_getgrgid(NULL, &group, getegid()) < 0) goto finish; - fr_strerror_printf("Effective user/group %s:%s: %s", user->pw_name, group->gr_name, error); + fr_strerror_printf("Effective user:group %s:%s: %s", user->pw_name, group->gr_name, error); finish: talloc_free(user); talloc_free(group);