aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGreg Hudson <ghudson@mit.edu>2009-11-01 21:51:26 +0000
committerGreg Hudson <ghudson@mit.edu>2009-11-01 21:51:26 +0000
commit37236a935f20a04b07c2b62525e051c171165b69 (patch)
tree48a7ea6b71c54d4e14e0314394e9f163ad33d4c8 /src
parent9fff08664f2167e07015e3a21987a8abdd2a435d (diff)
downloadkrb5-37236a935f20a04b07c2b62525e051c171165b69.zip
krb5-37236a935f20a04b07c2b62525e051c171165b69.tar.gz
krb5-37236a935f20a04b07c2b62525e051c171165b69.tar.bz2
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
Diffstat (limited to 'src')
-rw-r--r--src/include/k5-err.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/k5-err.h b/src/include/k5-err.h
index 4259ce6..463125b 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];
};