diff options
Diffstat (limited to 'src/lib/krb5/krb/plugin.c')
-rw-r--r-- | src/lib/krb5/krb/plugin.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/krb5/krb/plugin.c b/src/lib/krb5/krb/plugin.c index be909f1443..446d4f22e6 100644 --- a/src/lib/krb5/krb/plugin.c +++ b/src/lib/krb5/krb/plugin.c @@ -107,7 +107,7 @@ parse_modstr(krb5_context context, const char *modstr, sep = strchr(modstr, ':'); if (sep == NULL) { krb5_set_error_message(context, KRB5_PLUGIN_BAD_MODULE_SPEC, - "Invalid module specifier %s", modstr); + _("Invalid module specifier %s"), modstr); return KRB5_PLUGIN_BAD_MODULE_SPEC; } @@ -318,7 +318,7 @@ k5_plugin_load(krb5_context context, int interface_id, const char *modname, } } krb5_set_error_message(context, KRB5_PLUGIN_NAME_NOTFOUND, - "Could not find %s plugin module named '%s'", + _("Could not find %s plugin module named '%s'"), interface_names[interface_id], modname); return KRB5_PLUGIN_NAME_NOTFOUND; } |