ID:413 - Print new line chne character when setting user privilege.

The ouput sting on setting user privilege level is missing the trailing new line character.
Add the missing character.
This commit is contained in:
Alexander Yurtsev 2015-12-25 15:48:15 +03:00 committed by Zdenek Styblik
parent 8055e0d9fb
commit f62b924cb4

View File

@ -590,7 +590,7 @@ ipmi_user_priv(struct ipmi_intf *intf, int argc, char **argv)
user_access.user_id);
return (-1);
} else {
printf("Set Privilege Level command successful (user %d)",
printf("Set Privilege Level command successful (user %d)\n",
user_access.user_id);
return 0;
}