aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2005-07-22 07:55:51 +0000
committerJörg Mayer <jmayer@loplof.de>2005-07-22 07:55:51 +0000
commitf67b00ad9a7811424be4415ad3e04394ff747304 (patch)
treedfa698638532a7d158c1f4fe57013be80b33212e
parenteb1ff24278c89a8308ffd2e1bcdc7161aac817fb (diff)
More 'char*' -> 'const char*' warning fixes
svn path=/trunk/; revision=14986
-rw-r--r--epan/prefs.c28
-rw-r--r--rdps.c4
-rw-r--r--tools/lemon/lemon.c54
-rw-r--r--wiretap/airopeek9.c6
-rw-r--r--wiretap/ascend.c8
5 files changed, 50 insertions, 50 deletions
diff --git a/epan/prefs.c b/epan/prefs.c
index 7fa77e7fb6..1585d7e567 100644
--- a/epan/prefs.c
+++ b/epan/prefs.c
@@ -77,27 +77,27 @@ static int mgcp_udp_port_count;
e_prefs prefs;
-static gchar *gui_ptree_line_style_text[] =
+static const gchar *gui_ptree_line_style_text[] =
{ "NONE", "SOLID", "DOTTED", "TABBED", NULL };
-static gchar *gui_ptree_expander_style_text[] =
+static const gchar *gui_ptree_expander_style_text[] =
{ "NONE", "SQUARE", "TRIANGLE", "CIRCULAR", NULL };
-static gchar *gui_hex_dump_highlight_style_text[] =
+static const gchar *gui_hex_dump_highlight_style_text[] =
{ "BOLD", "INVERSE", NULL };
-static gchar *gui_console_open_text[] =
+static const gchar *gui_console_open_text[] =
{ "NEVER", "AUTOMATIC", "ALWAYS", NULL };
-static gchar *gui_fileopen_style_text[] =
+static const gchar *gui_fileopen_style_text[] =
{ "LAST_OPENED", "SPECIFIED", NULL };
/* GTK knows of two ways representing "both", vertical and horizontal aligned.
* as this may not work on other guis, we use only "both" in general here */
-static gchar *gui_toolbar_style_text[] =
+static const gchar *gui_toolbar_style_text[] =
{ "ICONS", "TEXT", "BOTH", NULL };
-static gchar *gui_layout_content_text[] =
+static const gchar *gui_layout_content_text[] =
{ "NONE", "PLIST", "PDETAILS", "PBYTES", NULL };
/*
@@ -916,10 +916,10 @@ read_prefs(int *gpf_errno_return, int *gpf_read_errno_return,
{
int i;
int err;
- char *pf_path;
- FILE *pf;
- fmt_data *cfmt;
- gchar *col_fmt[] = {"No.", "%m", "Time", "%t",
+ char *pf_path;
+ FILE *pf;
+ fmt_data *cfmt;
+ const gchar *col_fmt[] = {"No.", "%m", "Time", "%t",
"Source", "%s", "Destination", "%d",
"Protocol", "%p", "Info", "%i"};
@@ -1404,8 +1404,8 @@ prefs_set_pref(char *prefarg)
#define GREEN_COMPONENT(x) (guint16) (((((x) >> 8) & 0xff) * 65535 / 255))
#define BLUE_COMPONENT(x) (guint16) ( (((x) & 0xff) * 65535 / 255))
-static gchar *pr_formats[] = { "text", "postscript" };
-static gchar *pr_dests[] = { "command", "file" };
+static const gchar *pr_formats[] = { "text", "postscript" };
+static const gchar *pr_dests[] = { "command", "file" };
typedef struct {
char letter;
@@ -1421,7 +1421,7 @@ static name_resolve_opt_t name_resolve_opt[] = {
#define N_NAME_RESOLVE_OPT (sizeof name_resolve_opt / sizeof name_resolve_opt[0])
-static char *
+static const char *
name_resolve_to_string(guint32 name_resolve)
{
static char string[N_NAME_RESOLVE_OPT+1];
diff --git a/rdps.c b/rdps.c
index 2f8209de83..25e4e62c79 100644
--- a/rdps.c
+++ b/rdps.c
@@ -39,7 +39,7 @@ with 2 functions:
#define BUFFER_SIZE 1024
-void start_code(FILE *fd, char *func);
+void start_code(FILE *fd, const char *func);
void write_code(FILE *fd, char *string);
void end_code(FILE *fd);
void ps_clean_string(char *out, const char *in,
@@ -125,7 +125,7 @@ int main(int argc, char **argv)
exit(0);
}
-void start_code(FILE *fd, char *func)
+void start_code(FILE *fd, const char *func)
{
fprintf(fd, "/* Created by rdps.c. Do not edit! */\n");
fprintf(fd, "void print_ps_%s(FILE *fd) {\n", func);
diff --git a/tools/lemon/lemon.c b/tools/lemon/lemon.c
index 35ba7f7310..6d88e084de 100644
--- a/tools/lemon/lemon.c
+++ b/tools/lemon/lemon.c
@@ -193,11 +193,11 @@ struct lemon {
struct symbol **symbols; /* Sorted array of pointers to symbols */
int errorcnt; /* Number of errors */
struct symbol *errsym; /* The error symbol */
- char *name; /* Name of the generated parser */
+ const char *name; /* Name of the generated parser */
char *arg; /* Declaration of the 3th argument to parser */
char *tokentype; /* Type of terminal symbols in the parser stack */
char *start; /* Name of the start symbol for the grammar */
- char *stacksize; /* Size of the parser stack */
+ const char *stacksize; /* Size of the parser stack */
char *include; /* Code to put at the start of the C file */
int includeln; /* Line number for start of include code */
char *error; /* Code to execute when an error is seen */
@@ -235,7 +235,7 @@ struct action *Action_sort(struct action *);
void Action_add(struct action **, enum e_action, struct symbol *, void *);
/********* From the file "assert.h" ************************************/
-void myassert(char *, int);
+void myassert(const char *, int);
#ifndef NDEBUG
# define assert(X) if(!(X))myassert(__FILE__,__LINE__)
#else
@@ -264,19 +264,19 @@ void Configlist_reset(void);
/********* From the file "error.h" ***************************************/
#if __GNUC__ >= 2
-void ErrorMsg( char *, int, char *, ... )
+void ErrorMsg( const char *, int, const char *, ... )
__attribute__((format (printf, 3, 4)));
#else
-void ErrorMsg( char *, int, char *, ... );
+void ErrorMsg( const char *, int, const char *, ... );
#endif
/****** From the file "option.h" ******************************************/
struct s_options {
enum { OPT_FLAG=1, OPT_INT, OPT_DBL, OPT_STR,
OPT_FFLAG, OPT_FINT, OPT_FDBL, OPT_FSTR} type;
- char *label;
+ const char *label;
char *arg;
- char *message;
+ const char *message;
};
int optinit(char**,struct s_options*,FILE*);
int optnargs(void);
@@ -325,19 +325,19 @@ int SetUnion(char *A,char *B); /* A <- A U B, thru element N */
/* Routines for handling a strings */
-char *Strsafe(char *);
+char *Strsafe(const char *);
void Strsafe_init(void);
int Strsafe_insert(char *);
-char *Strsafe_find(char *);
+char *Strsafe_find(const char *);
/* Routines for handling symbols of the grammar */
-struct symbol *Symbol_new(char *x);
+struct symbol *Symbol_new(const char *x);
int Symbolcmpp(const void *, const void *);
void Symbol_init(void);
int Symbol_insert(struct symbol *, char *);
-struct symbol *Symbol_find(char *);
+struct symbol *Symbol_find(const char *);
struct symbol *Symbol_Nth(int);
int Symbol_count(void);
struct symbol **Symbol_arrayof(void);
@@ -423,7 +423,7 @@ void Action_add(struct action **app, enum e_action type, struct symbol *sp,
/*
** A more efficient way of handling assertions.
*/
-void myassert(char *file, int line)
+void myassert(const char *file, int line)
{
fprintf(stderr,"Assertion failed on line %d of file \"%s\"\n",line,file);
exit(1);
@@ -1102,7 +1102,7 @@ static int findbreak(char *msg, int min, int max)
#define ERRMSGSIZE 10000 /* Hope this is big enough. No way to error check */
#define LINEWIDTH 79 /* Max width of any output line */
#define PREFIXLIMIT 30 /* Max width of the prefix on each line */
-void ErrorMsg(char *filename, int lineno, char *format, ...)
+void ErrorMsg(const char *filename, int lineno, const char *format, ...)
{
char errmsg[ERRMSGSIZE];
char prefix[PREFIXLIMIT+10];
@@ -2320,7 +2320,7 @@ void Plink_delete(struct plink *plp)
** name comes from malloc() and must be freed by the calling
** function.
*/
-PRIVATE char *file_makename(char *pattern, char *suffix)
+PRIVATE char *file_makename(char *pattern, const char *suffix)
{
char *name;
char *cp;
@@ -2343,7 +2343,7 @@ PRIVATE char *file_makename(char *pattern, char *suffix)
** Space to hold this name comes from malloc() and must be
** freed by the calling function.
*/
-PRIVATE char *file_makename_using_basename(struct lemon *lemp, char *suffix)
+PRIVATE char *file_makename_using_basename(struct lemon *lemp, const char *suffix)
{
return file_makename(lemp->basename, suffix);
}
@@ -2357,7 +2357,7 @@ PRIVATE char *file_makename_using_basename(struct lemon *lemp, char *suffix)
** side, we should add another arg to file_open() indicating which
** directory, ("input, "output", or "other") we should deal with.
*/
-PRIVATE FILE *file_open(struct lemon *lemp, char *suffix, char *mode)
+PRIVATE FILE *file_open(struct lemon *lemp, const char *suffix, const char *mode)
{
FILE *fp;
char *name;
@@ -2557,7 +2557,7 @@ void ReportOutput(struct lemon *lemp)
** the exacutable */
PRIVATE char *pathsearch(char *argv0, char *name, int modemask)
{
- char *pathlist;
+ const char *pathlist;
char *path,*cp;
char c;
@@ -2620,7 +2620,7 @@ PRIVATE int compute_action(struct lemon *lemp, struct action *ap)
** if name!=0, then any word that begin with "Parse" is changed to
** begin with *name instead.
*/
-PRIVATE void tplt_xfer(char *name, FILE *in, FILE *out, int *lineno)
+PRIVATE void tplt_xfer(const char *name, FILE *in, FILE *out, int *lineno)
{
int i, iStart;
char line[LINESIZE];
@@ -2844,7 +2844,7 @@ void print_stack_union(
char *stddt; /* Standardized name for a datatype */
int i,j; /* Loop counters */
int hash; /* For hashing the name of a type */
- char *name; /* Name of the parser */
+ const char *name; /* Name of the parser */
/* Allocate and initialize types[] and allocate stddt[] */
arraysize = lemp->nsymbol * 2;
@@ -2944,7 +2944,7 @@ void ReportTable(
struct rule *rp;
int i;
int tablecnt;
- char *name;
+ const char *name;
in = tplt_open(lemp);
if( in==0 ) return;
@@ -2967,7 +2967,7 @@ void ReportTable(
/* Generate #defines for all tokens */
if( mhflag ){
- char *prefix;
+ const char *prefix;
fprintf(out,"#if INTERFACE\n"); lineno++;
if( lemp->tokenprefix ) prefix = lemp->tokenprefix;
else prefix = "";
@@ -3221,7 +3221,7 @@ void ReportTable(
void ReportHeader(struct lemon *lemp)
{
FILE *out, *in;
- char *prefix;
+ const char *prefix;
char line[LINESIZE];
char pattern[LINESIZE];
int i;
@@ -3362,7 +3362,7 @@ int SetUnion(char *s1, char *s2)
** Code for processing tables in the LEMON parser generator.
*/
-PRIVATE int strhash(char *x)
+PRIVATE int strhash(const char *x)
{
int h = 0;
while( *x) h = h*13 + *(x++);
@@ -3373,7 +3373,7 @@ PRIVATE int strhash(char *x)
** keep strings in a table so that the same string is not in more
** than one place.
*/
-char *Strsafe(char *y)
+char *Strsafe(const char *y)
{
char *z;
@@ -3487,7 +3487,7 @@ int Strsafe_insert(char *data)
/* Return a pointer to data assigned to the given key. Return NULL
** if no such key. */
-char *Strsafe_find(char *key)
+char *Strsafe_find(const char *key)
{
int h;
x1node *np;
@@ -3505,7 +3505,7 @@ char *Strsafe_find(char *key)
/* Return a pointer to the (terminal or nonterminal) symbol "x".
** Create a new symbol if this is the first time "x" has been seen.
*/
-struct symbol *Symbol_new(char *x)
+struct symbol *Symbol_new(const char *x)
{
struct symbol *sp;
@@ -3653,7 +3653,7 @@ int Symbol_insert(struct symbol *data, char *key)
/* Return a pointer to data assigned to the given key. Return NULL
** if no such key. */
-struct symbol *Symbol_find(char *key)
+struct symbol *Symbol_find(const char *key)
{
int h;
x2node *np;
diff --git a/wiretap/airopeek9.c b/wiretap/airopeek9.c
index 7cf4f97475..8cc276f54a 100644
--- a/wiretap/airopeek9.c
+++ b/wiretap/airopeek9.c
@@ -84,10 +84,10 @@ static gboolean airopeekv9_seek_read(wtap *wth, long seek_off,
int *err, gchar **err_info);
static void airopeekv9_close(wtap *wth);
-static int wtap_file_read_pattern (wtap *wth, char *pattern, int *err)
+static int wtap_file_read_pattern (wtap *wth, const char *pattern, int *err)
{
int c;
- char *cp;
+ const char *cp;
cp = pattern;
while (*cp)
@@ -119,7 +119,7 @@ static int wtap_file_read_pattern (wtap *wth, char *pattern, int *err)
static int wtap_file_read_till_separator (wtap *wth, char *buffer, int buflen,
- char *separators, int *err)
+ const char *separators, int *err)
{
int c;
char *cp;
diff --git a/wiretap/ascend.c b/wiretap/ascend.c
index a411d78d60..3b239226ce 100644
--- a/wiretap/ascend.c
+++ b/wiretap/ascend.c
@@ -62,8 +62,8 @@
#define ASCEND_MAX_SEEK 100000
typedef struct _ascend_magic_string {
- guint type;
- gchar *strptr;
+ guint type;
+ const gchar *strptr;
} ascend_magic_string;
#define ASCEND_MAGIC_STRINGS 11
@@ -106,8 +106,8 @@ static long ascend_seek(wtap *wth, int max_seek, int *err)
while (((byte = file_getc(wth->fh)) != EOF) && bytes_read < max_seek) {
for (string_i = 0; string_i < ASCEND_MAGIC_STRINGS; string_i++) {
- gchar *strptr = ascend_magic[string_i].strptr;
- guint len = strlen(strptr);
+ const gchar *strptr = ascend_magic[string_i].strptr;
+ guint len = strlen(strptr);
if (byte == *(strptr + string_level[string_i])) {
string_level[string_i]++;