]> granicus.if.org Git - sudo/commitdiff
Start warning with a lower case letter for consistency and to match
authorTodd C. Miller <Todd.Miller@courtesan.com>
Thu, 11 Apr 2013 10:38:12 +0000 (06:38 -0400)
committerTodd C. Miller <Todd.Miller@courtesan.com>
Thu, 11 Apr 2013 10:38:12 +0000 (06:38 -0400)
existing translated strings.

plugins/sudoers/sssd.c

index b5cbd21b3af821eb1820355444690c1b0f0ed4de..e25c7d66742d1d83da8763d8b3dccbd2ac1e0a1a 100644 (file)
@@ -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);
     }