summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPanu Matilainen <pmatilai@redhat.com>2021-12-13 13:01:31 +0200
committerMichal Domonkos <mdomonko@redhat.com>2022-07-01 10:52:14 +0200
commitf986c73e55ac73919b2bc5d70c55169358c4d848 (patch)
treeda5bda71560d21c9a82c77b46cca53e16d92dfb1
parentf897a6303e031d0e23b38c3a27e5ab6956e4bb5e (diff)
downloadrpm-f986c73e55ac73919b2bc5d70c55169358c4d848.tar.gz
Fix silly typo/thinko in commit 7b3a3f004f96ed3cb9cc377f7e64bfc88195dfc2
(cherry picked from commit 3955a445dfb6622d33ab7c25a987d546d6e8b5d8)
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index f530cee12..f1eeb1ff5 100644
--- a/configure.ac
+++ b/configure.ac
@@ -822,7 +822,7 @@ AM_CONDITIONAL(AUDIT,[test "$with_audit" = yes])
user_with_uid0=$(awk -F: '$3==0 {print $1;exit}' /etc/passwd)
group_with_gid0=$(awk -F: '$3==0 {print $1;exit}' /etc/group)
if test -z "$user_with_uid0" ; then user_with_uid0=root ; fi
-if test -z "$group_with_uid0" ; then group_with_uid0=root ; fi
+if test -z "$group_with_gid0" ; then group_with_gid0=root ; fi
AC_DEFINE_UNQUOTED([UID_0_USER],["$user_with_uid0"],[Get the user name having userid 0])
AC_DEFINE_UNQUOTED([GID_0_GROUP],["$group_with_gid0"],[Get the group name having groupid 0])