autofs-5.0.9 - fix typo in flagdir configure option From: Michael Tokarev This problem was originally reported, and a patch offered, by Michael Tokarev but was inadvertantly missed, so the change is credited to him in retrospect. --- CHANGELOG | 1 + configure | 2 +- configure.in | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index d16a809..7c6be5a 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -11,6 +11,7 @@ - fix incorrect round robin host detection. - fix memory leak in create_client(). - fix memory leak in get_exports(). +- fix typo in flagdir configure option. 28/03/2014 autofs-5.0.9 ======================= diff --git a/configure b/configure index 23e2fac..e2a15a3 100755 --- a/configure +++ b/configure @@ -2381,7 +2381,7 @@ if test "${with_flagdir+set}" = set; then : then : else - filagdir="${withval}" + flagdir="${withval}" fi fi diff --git a/configure.in b/configure.in index c30edeb..16a8ae3 100644 --- a/configure.in +++ b/configure.in @@ -114,7 +114,7 @@ AC_ARG_WITH(flagdir, then : else - filagdir="${withval}" + flagdir="${withval}" fi ) AC_MSG_CHECKING([for autofs flag file directory])