From 37236a935f20a04b07c2b62525e051c171165b69 Mon Sep 17 00:00:00 2001 From: Greg Hudson Date: Sun, 1 Nov 2009 21:51:26 +0000 Subject: [PATCH] Un-constify struct errinfo's msg field because it is the owner of that memory (even though the memory is intended to be immutable during its lifetime). git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@23116 dc483132-0cff-0310-8789-dd5450dbe970 --- src/include/k5-err.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/k5-err.h b/src/include/k5-err.h index 4259ce682..463125b2c 100644 --- a/src/include/k5-err.h +++ b/src/include/k5-err.h @@ -46,7 +46,7 @@ struct errinfo { long code; - const char *msg; + char *msg; char scratch_buf[1024]; }; -- 2.26.2