From 2656659fc2b73a13528f51cb245c7755bb230aef Mon Sep 17 00:00:00 2001 From: "Roland C. Dowdeswell" Date: Mon, 21 May 2012 17:12:16 +0100 Subject: [PATCH] Fix a typo in a comment. --- lib/hdb/db.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/hdb/db.c b/lib/hdb/db.c index 67711c54d..106e95f5a 100644 --- a/lib/hdb/db.c +++ b/lib/hdb/db.c @@ -321,7 +321,7 @@ hdb_db_create(krb5_context context, HDB **db, const char *filename) { DB1_HDB **db1 = (DB1_HDB **)db; - *db = calloc(1, sizeof(**db1)); /* Allocate space for the larger db3 */ + *db = calloc(1, sizeof(**db1)); /* Allocate space for the larger db1 */ if (*db == NULL) { krb5_set_error_message(context, ENOMEM, "malloc: out of memory"); return ENOMEM;