aboutsummaryrefslogtreecommitdiffstats
path: root/rdps.c
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2004-01-23 00:43:15 +0000
committerJörg Mayer <jmayer@loplof.de>2004-01-23 00:43:15 +0000
commitaf785857b1ddd6c8e00dfebce5b4e6706d658be4 (patch)
tree28b54733e2243acdce2287027bbb1b94d0587858 /rdps.c
parent2acfd4769023a8393b9c3c6240e20df5acca6499 (diff)
trivial signed/unsigned warning fixes
svn path=/trunk/; revision=9791
Diffstat (limited to 'rdps.c')
-rw-r--r--rdps.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/rdps.c b/rdps.c
index 4c98e475f7..55158bb1ef 100644
--- a/rdps.c
+++ b/rdps.c
@@ -1,6 +1,6 @@
/* rdps.c
*
- * $Id: rdps.c,v 1.5 2002/08/28 21:00:41 jmayer Exp $
+ * $Id: rdps.c,v 1.6 2004/01/23 00:43:15 jmayer Exp $
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
* Copyright 1998 Gerald Combs
@@ -41,7 +41,7 @@ with 2 functions:
void start_code(FILE *fd, char *func);
void write_code(FILE *fd, char *string);
void end_code(FILE *fd);
-void ps_clean_string(unsigned char *out, const unsigned char *in,
+void ps_clean_string(char *out, const char *in,
int outbuf_size);
enum ps_state { null, preamble, hex, finale };
@@ -142,7 +142,7 @@ void end_code(FILE *fd)
fprintf(fd, "}\n\n\n");
}
-void ps_clean_string(unsigned char *out, const unsigned char *in,
+void ps_clean_string(char *out, const char *in,
int outbuf_size)
{
int rd, wr;