From: Todd C. Miller Date: Mon, 20 Aug 2007 14:46:40 +0000 (+0000) Subject: Be consistent when using single quotes and backticks. X-Git-Tag: SUDO_1_7_0~428 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fa6536920bf051ac9e3603aeda0212abf29d562d;p=sudo Be consistent when using single quotes and backticks. --- diff --git a/sudo.c b/sudo.c index 38f4dbb3d..5da0950c6 100644 --- a/sudo.c +++ b/sudo.c @@ -909,7 +909,7 @@ parse_args(argc, argv) NewArgv++; goto args_done; case '\0': - warningx("'-' requires an argument"); + warningx("`-' requires an argument"); usage(1); default: warningx("illegal option `%s'", NewArgv[0]); @@ -945,13 +945,13 @@ args_done: if (user_runas != NULL && !ISSET(rval, (MODE_EDIT|MODE_RUN|MODE_CHECK))) { if (excl != '\0') - warningx("the `-u' and '-%c' options may not be used together", + warningx("the `-u' and `-%c' options may not be used together", excl); usage(1); } if (list_pw != NULL && rval != MODE_LIST && rval != MODE_CHECK) { if (excl != '\0') - warningx("the `-U' and '-%c' options may not be used together", + warningx("the `-U' and `-%c' options may not be used together", excl); usage(1); }