Changeset 170 for trunk/src/sh_readconf.c
- Timestamp:
- Apr 30, 2008, 11:56:45 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/sh_readconf.c
r169 r170 96 96 97 97 typedef struct str_ListSections { 98 c har * name;98 const char * name; 99 99 int type; 100 100 } sh_str_ListSections; … … 721 721 722 722 typedef struct _cfg_options { 723 c har * optname;723 const char * optname; 724 724 ShSectionType section; 725 725 ShSectionType alt_section; … … 1111 1111 { 1112 1112 char * key; 1113 c har * value;1113 const char * value; 1114 1114 char * tmp; 1115 1115 int i; … … 1120 1120 #endif 1121 1121 1122 static c har *dummy = N_("dummy");1123 1124 static c har *closing[] = {1122 static const char *dummy = N_("dummy"); 1123 1124 static const char *closing[] = { 1125 1125 N_("closecommand"), 1126 1126 NULL 1127 1127 }; 1128 1128 1129 static c har *ident[] = {1129 static const char *ident[] = { 1130 1130 N_("severityreadonly"), 1131 1131 N_("severitylogfiles"),
Note:
See TracChangeset
for help on using the changeset viewer.