From: Todd C. Miller Date: Tue, 20 Oct 1998 20:22:09 +0000 (+0000) Subject: add missing quotes around $with_editor X-Git-Tag: SUDO_1_5_7~53 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=96286964eba47dcbafd55e8c42b15aeab7d84c1a;p=sudo add missing quotes around $with_editor --- diff --git a/configure.in b/configure.in index 25c14ca6d..aecbfb455 100644 --- a/configure.in +++ b/configure.in @@ -583,7 +583,7 @@ AC_ARG_WITH(editor, [ --with-editor=path Default editor for visudo (defaul no) echo "Sorry, --without-editor not supported." exit 1 ;; - *) AC_DEFINE_UNQUOTED(EDITOR, $with_editor) + *) AC_DEFINE_UNQUOTED(EDITOR, "$with_editor") AC_MSG_RESULT([$with_editor]) ;; esac], [AC_DEFINE(EDITOR, _PATH_VI) AC_MSG_RESULT(vi)])