summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIssam Maghni <concatime@users.noreply.github.com>2020-07-31 22:28:29 -0400
committerTomáš Mráz <tmraz@redhat.com>2020-08-03 13:30:49 +0200
commitba5a375570fc35112cb29c182ecb7abae2b49056 (patch)
tree828a5e586b4f5c0dbe8eb7cba5398f0a09573b47
parente8113766910eb0f512132bfcaec744ad7351c224 (diff)
configure.ac: fix typo in --with-kernel-overflow-uid= option to match its documentation
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 7737efc7..69e2f302 100644
--- a/configure.ac
+++ b/configure.ac
@@ -671,7 +671,7 @@ test -n "$opt_sysuidmin" ||
opt_sysuidmin=101
AC_DEFINE_UNQUOTED(PAM_USERTYPE_SYSUIDMIN, $opt_sysuidmin, [Minimum system user uid.])
-AC_ARG_WITH([kerneloverflowuid], AS_HELP_STRING([--with-kernel-overflow-uid=<number>],[kernel overflow uid, default (uint16_t)-2=65534]), opt_kerneloverflowuid=$withval)
+AC_ARG_WITH([kernel-overflow-uid], AS_HELP_STRING([--with-kernel-overflow-uid=<number>],[kernel overflow uid, default (uint16_t)-2=65534]), opt_kerneloverflowuid=$withval)
test -n "$opt_kerneloverflowuid" ||
opt_kerneloverflowuid=65534
AC_DEFINE_UNQUOTED(PAM_USERTYPE_OVERFLOW_UID, $opt_kerneloverflowuid, [Kernel overflow uid.])