aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ftp.c
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2010-11-04 11:25:40 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2010-11-04 11:25:40 +0000
commit4a69d9203d590cdd9ffdfb06fa716224cfae286b (patch)
treed04593c360c307481d99bb66f7e2f30e1562f5b7 /epan/dissectors/packet-ftp.c
parentc1b8394ebc3b7056fb13267629dc784b0c225a81 (diff)
Corrected pointer types to avoid warnings from clang.
svn path=/trunk/; revision=34773
Diffstat (limited to 'epan/dissectors/packet-ftp.c')
-rw-r--r--epan/dissectors/packet-ftp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-ftp.c b/epan/dissectors/packet-ftp.c
index 33d79bf7d8..2994865d6e 100644
--- a/epan/dissectors/packet-ftp.c
+++ b/epan/dissectors/packet-ftp.c
@@ -259,7 +259,7 @@ parse_extended_pasv_response(const guchar *line, int linelen, guint16 *ftp_port)
(Try to cope with '(' in description)
*/
for (; !delimiters_seen;) {
- char delimiter = '\0';
+ guchar delimiter = '\0';
while ((c = *p) != '\0' && (c != '('))
p++;