summaryrefslogtreecommitdiffstats
path: root/crypt.h
diff options
context:
space:
mode:
authorKarsten Keil2008-09-02 02:02:11 +0200
committerKarsten Keil2008-09-02 02:02:11 +0200
commit08aad9a8c5ad279759e0a870b1dd0d8159ce3444 (patch)
tree90dded99cc57d2149905871ecc6bfa1ece6fe701 /crypt.h
parentFix 64bit build (diff)
downloadlcr-08aad9a8c5ad279759e0a870b1dd0d8159ce3444.tar.gz
lcr-08aad9a8c5ad279759e0a870b1dd0d8159ce3444.tar.xz
lcr-08aad9a8c5ad279759e0a870b1dd0d8159ce3444.zip
Fix lot of warnings
Diffstat (limited to 'crypt.h')
-rw-r--r--crypt.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypt.h b/crypt.h
index 1c6924c..f5a030c 100644
--- a/crypt.h
+++ b/crypt.h
@@ -40,7 +40,7 @@ enum { /* crypt manager states */
};
#define CM_ST_NAMES \
-static char *cm_st_name[] = { \
+static const char *cm_st_name[] = { \
"NULL", \
"IDENT", \
"KEYGEN", \
@@ -103,7 +103,7 @@ enum { /* messages */
};
#define CM_MSG_NAMES \
-static char *cm_msg_name[] = { \
+static const char *cm_msg_name[] = { \
"CP_IDENT", \
"CP_SLAVE", \
"CP_MASTER", \