--- Please keep me in CC, as I'm not subscribed libmount/src/optstr.c | 2 +- libmount/src/utils.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/libmount/src/optstr.c b/libmount/src/optstr.c index 5daa511a0..43b983ebb 100644 --- a/libmount/src/optstr.c +++ b/libmount/src/optstr.c @@ -887,7 +887,7 @@ static int set_uint_value(char **optstr, unsigned int num, * @value: pointer to the beginning of the uid value * @valsz: size of the value * @next: returns pointer to the next option (optional argument) - + * * Translates "username" or "useruid" to the real UID. * * For example: diff --git a/libmount/src/utils.c b/libmount/src/utils.c index 74815055b..ff3acfb55 100644 --- a/libmount/src/utils.c +++ b/libmount/src/utils.c @@ -596,7 +596,7 @@ int mnt_get_uid(const char *username, uid_t *uid) return -ENOMEM; if (!getpwnam_r(username, &pwd, buf, UL_GETPW_BUFSIZ, &pw) && pw) { - *uid= pw->pw_uid; + *uid = pw->pw_uid; rc = 0; } else { DBG(UTILS, ul_debug( @@ -623,7 +623,7 @@ int mnt_get_gid(const char *groupname, gid_t *gid) return -ENOMEM; if (!getgrnam_r(groupname, &grp, buf, UL_GETPW_BUFSIZ, &gr) && gr) { - *gid= gr->gr_gid; + *gid = gr->gr_gid; rc = 0; } else { DBG(UTILS, ul_debug( -- 2.30.2
Attachment:
signature.asc
Description: PGP signature