Fix subject verb agreement in error message...
for krb5_ticket_get_authorization_data_type() And remove FIXME in translation files. Fix heimdal#361
This commit is contained in:

committed by
Roland C. Dowdeswell

parent
49d56916e1
commit
37979747bc
@@ -381,7 +381,7 @@ krb5_ticket_get_authorization_data_type(krb5_context context,
|
||||
ad = ticket->ticket.authorization_data;
|
||||
if (ticket->ticket.authorization_data == NULL) {
|
||||
krb5_set_error_message(context, ENOENT,
|
||||
N_("Ticket have not authorization data", ""));
|
||||
N_("Ticket has no authorization data", ""));
|
||||
return ENOENT; /* XXX */
|
||||
}
|
||||
|
||||
@@ -391,7 +391,7 @@ krb5_ticket_get_authorization_data_type(krb5_context context,
|
||||
return ret;
|
||||
if (!found) {
|
||||
krb5_set_error_message(context, ENOENT,
|
||||
N_("Ticket have not "
|
||||
N_("Ticket has no "
|
||||
"authorization data of type %d", ""),
|
||||
type);
|
||||
return ENOENT; /* XXX */
|
||||
|
Reference in New Issue
Block a user