Skip to content

Commit

Permalink
Use a colon to match the value fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
arr2036 committed Mar 31, 2017
1 parent ef9f4b9 commit 993176d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/util.c
Expand Up @@ -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);
Expand Down

0 comments on commit 993176d

Please sign in to comment.