summaryrefslogtreecommitdiffstats
path: root/login-utils
diff options
context:
space:
mode:
authorRuediger Meier2018-02-15 22:02:18 +0100
committerRuediger Meier2018-02-16 11:12:52 +0100
commit73afd3f8e8793844e8e53f69d819ca740cdfc889 (patch)
tree7f6748bf84ba5940af9a115bba26c3298c951833 /login-utils
parentlsns: fix clang compiler warning (diff)
downloadkernel-qcow2-util-linux-73afd3f8e8793844e8e53f69d819ca740cdfc889.tar.gz
kernel-qcow2-util-linux-73afd3f8e8793844e8e53f69d819ca740cdfc889.tar.xz
kernel-qcow2-util-linux-73afd3f8e8793844e8e53f69d819ca740cdfc889.zip
misc: fix typos using codespell
Some more funny typos, please review carefully. Signed-off-by: Ruediger Meier <ruediger.meier@ga-group.nl>
Diffstat (limited to 'login-utils')
-rw-r--r--login-utils/su-common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/login-utils/su-common.c b/login-utils/su-common.c
index 8105e6ccd..c1b1a04e4 100644
--- a/login-utils/su-common.c
+++ b/login-utils/su-common.c
@@ -173,7 +173,7 @@ static void su_init_debug(void)
static void init_tty(struct su_context *su)
{
su->isterm = isatty(STDIN_FILENO) ? 1 : 0;
- DBG(TTY, ul_debug("initilize [is-term=%s]", su->isterm ? "true" : "false"));
+ DBG(TTY, ul_debug("initialize [is-term=%s]", su->isterm ? "true" : "false"));
if (su->isterm)
get_terminal_name(NULL, &su->tty_name, &su->tty_number);
}