lrentry needs one more level of indirection before zero
authorJohn Kohl <jtkohl@mit.edu>
Tue, 1 May 1990 16:47:47 +0000 (16:47 +0000)
committerJohn Kohl <jtkohl@mit.edu>
Tue, 1 May 1990 16:47:47 +0000 (16:47 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@640 dc483132-0cff-0310-8789-dd5450dbe970

src/kdc/kdc_util.c

index e50a159f37c9e9b3afec4df7c8454e3a28c2ef17..fba1c19797d0d21ce67290fa24da43b5fc6bbbbc 100644 (file)
@@ -284,12 +284,14 @@ int direction;
 
 /* This probably wants to be updated if you support last_req stuff */
 
+static krb5_last_req_entry *nolrarray[] = { 0 };
+
 krb5_error_code
 fetch_last_req_info(dbentry, lrentry)
 krb5_db_entry *dbentry;
 krb5_last_req_entry ***lrentry;
 {
-    *lrentry = 0;
+    *lrentry = nolrarray;
     return 0;
 }