summaryrefslogtreecommitdiffstats
path: root/krb5-1.10-kprop-mktemp.patch
blob: 62178df7fc5a6a012e9bc40363c00ae9ef7b5ad0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
Use an in-memory ccache to silence a compiler warning, for RT#6414.

--- krb5/src/slave/kprop.c
+++ krb5/src/slave/kprop.c
@@ -202,9 +202,8 @@ void PRS(argc, argv)
 void get_tickets(context)
     krb5_context context;
 {
-    char   buf[BUFSIZ], *def_realm;
+    char buf[] = "MEMORY:_kproptkt", *def_realm;
     krb5_error_code retval;
-    static char tkstring[] = "/tmp/kproptktXXXXXX";
     krb5_keytab keytab = NULL;
 
     /*
@@ -229,11 +228,8 @@ void get_tickets(context)
 #endif
 
     /*
-     * Initialize cache file which we're going to be using
+     * Initialize an in-memory cache for temporary use
      */
-    (void) mktemp(tkstring);
-    snprintf(buf, sizeof(buf), "FILE:%s", tkstring);
-
     retval = krb5_cc_resolve(context, buf, &ccache);
     if (retval) {
         com_err(progname, retval, _("while opening credential cache %s"), buf);