From 236f306a2b5bc5c72f2e4955e5ae13d1bc81bf0b Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Thu, 11 Apr 2013 06:38:12 -0400 Subject: [PATCH] Start warning with a lower case letter for consistency and to match existing translated strings. --- plugins/sudoers/sssd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/sudoers/sssd.c b/plugins/sudoers/sssd.c index b5cbd21b3..e25c7d667 100644 --- a/plugins/sudoers/sssd.c +++ b/plugins/sudoers/sssd.c @@ -253,8 +253,8 @@ static int sudo_sss_open(struct sudo_nss *nss) /* Load symbols */ handle->ssslib = dlopen(path, RTLD_LAZY); if (handle->ssslib == NULL) { - warningx(_("Unable to dlopen %s: %s"), path, dlerror()); - warningx(_("Unable to initialize SSS source. Is SSSD installed on your machine?")); + warningx(_("unable to dlopen %s: %s"), path, dlerror()); + warningx(_("unable to initialize SSS source. Is SSSD installed on your machine?")); debug_return_int(EFAULT); } -- 2.50.0