2e036bfdfd
checked in (request 33933) OBS-URL: https://build.opensuse.org/request/show/33933 OBS-URL: https://build.opensuse.org/package/show/network/krb5?expand=0&rev=12
28 lines
969 B
Plaintext
28 lines
969 B
Plaintext
Index: krb5-1.7/src/kdc/do_tgs_req.c
|
|
===================================================================
|
|
--- krb5-1.7.orig/src/kdc/do_tgs_req.c
|
|
+++ krb5-1.7/src/kdc/do_tgs_req.c
|
|
@@ -1158,7 +1158,7 @@ prep_reprocess_req(krb5_kdc_req *request
|
|
free(temp_buf);
|
|
if (retval) {
|
|
/* no match found */
|
|
- kdc_err(kdc_context, retval, 0);
|
|
+ kdc_err(kdc_context, retval, "unable to find realm of host");
|
|
goto cleanup;
|
|
}
|
|
if (realms == 0) {
|
|
Index: krb5-1.7/src/lib/kadm5/logger.c
|
|
===================================================================
|
|
--- krb5-1.7.orig/src/lib/kadm5/logger.c
|
|
+++ krb5-1.7/src/lib/kadm5/logger.c
|
|
@@ -188,6 +188,9 @@ klog_com_err_proc(const char *whoami, lo
|
|
char *cp;
|
|
char *syslogp;
|
|
|
|
+ if (whoami == NULL || format == NULL)
|
|
+ return;
|
|
+
|
|
/* Make the header */
|
|
snprintf(outbuf, sizeof(outbuf), "%s: ", whoami);
|
|
/*
|