]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Use a colon to match the value fmt
authorArran Cudbard-Bell <a.cudbardb@freeradius.org>
Fri, 31 Mar 2017 19:55:16 +0000 (15:55 -0400)
committerArran Cudbard-Bell <a.cudbardb@freeradius.org>
Fri, 31 Mar 2017 19:55:16 +0000 (15:55 -0400)
src/main/util.c

index 2a09bf836df81cecf151f7247916c427c01981f4..30e3fc8f7c4b17c05a2d132c134cc54bf9e4f571 100644 (file)
@@ -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);