From: Todd C. Miller Date: Sun, 18 Dec 2011 19:20:56 +0000 (-0500) Subject: Fix typo in visiblepw description; from Joel Pickett X-Git-Tag: SUDO_1_8_4~104^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1f97735fbbfbd3789e62f337f8156a205f366ef8;p=sudo Fix typo in visiblepw description; from Joel Pickett --- diff --git a/plugins/sudoers/def_data.c b/plugins/sudoers/def_data.c index 200d76a65..a33cfb460 100644 --- a/plugins/sudoers/def_data.c +++ b/plugins/sudoers/def_data.c @@ -296,7 +296,7 @@ struct sudo_defs_types sudo_defs_table[] = { NULL, }, { "visiblepw", T_FLAG, - N_("Allow sudo to prompt for a password even if it would be visisble"), + N_("Allow sudo to prompt for a password even if it would be visible"), NULL, }, { "pwfeedback", T_FLAG, diff --git a/plugins/sudoers/def_data.in b/plugins/sudoers/def_data.in index 340a5e489..33ab1353a 100644 --- a/plugins/sudoers/def_data.in +++ b/plugins/sudoers/def_data.in @@ -219,7 +219,7 @@ sudoers_locale "Locale to use while parsing sudoers: %s" visiblepw T_FLAG - "Allow sudo to prompt for a password even if it would be visisble" + "Allow sudo to prompt for a password even if it would be visible" pwfeedback T_FLAG "Provide visual feedback at the password prompt when there is user input" diff --git a/src/exec.c b/src/exec.c index 798c65a4a..49570751a 100644 --- a/src/exec.c +++ b/src/exec.c @@ -279,7 +279,7 @@ sudo_execve(struct command_details *details, struct command_status *cstat) sigemptyset(&sa.sa_mask); /* - * Signals for forward to the child process (excluding SIGALRM and SIGCHLD). + * Signals to forward to the child process (excluding SIGALRM and SIGCHLD). * Note: HP-UX select() will not be interrupted if SA_RESTART set. */ sa.sa_flags = SA_INTERRUPT; /* do not restart syscalls */