From d43c3becbd406d145426d0409b8fe2a36ee6c63c Mon Sep 17 00:00:00 2001 From: Martin Basti Date: Tue, 24 Nov 2015 16:45:00 +0100 Subject: [PATCH] ipa-getkeytab: do not return error when translations cannot be loaded Only warning is shown https://fedorahosted.org/freeipa/ticket/5483 Reviewed-By: Tomas Babej --- ipa-client/ipa-getkeytab.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ipa-client/ipa-getkeytab.c b/ipa-client/ipa-getkeytab.c index 15255d6a3..a006b78a8 100644 --- a/ipa-client/ipa-getkeytab.c +++ b/ipa-client/ipa-getkeytab.c @@ -653,7 +653,7 @@ int main(int argc, const char *argv[]) ret = init_gettext(); if (ret) { - exit(1); + fprintf(stderr, "Failed to load translations\n"); } krberr = krb5_init_context(&krbctx);