aboutsummaryrefslogtreecommitdiffstats
path: root/rdps.c
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2006-05-28 20:28:20 +0000
committerAnders Broman <anders.broman@ericsson.com>2006-05-28 20:28:20 +0000
commitf68d6e4c8cc08f1fe570d15e2185d339c81883b8 (patch)
tree2b6a6711cc2ff394c41a98f47a388466a433bccd /rdps.c
parent996d4db495e60df8a627097e3885acdce209132c (diff)
Ethereal->Wireshark
svn path=/trunk/; revision=18235
Diffstat (limited to 'rdps.c')
-rw-r--r--rdps.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/rdps.c b/rdps.c
index 1830ae80ac..9cd0924b27 100644
--- a/rdps.c
+++ b/rdps.c
@@ -76,19 +76,19 @@ int main(int argc, char **argv)
while (fgets(buf, BUFFER_SIZE - 1, input)) {
if (state == null) {
- if (strcmp(buf, "% ---- ethereal preamble start ---- %\n") == 0) {
+ if (strcmp(buf, "% ---- wireshark preamble start ---- %\n") == 0) {
state = preamble;
start_code(output, "preamble");
continue;
}
- else if (strcmp(buf, "% ---- ethereal finale start ---- %\n") == 0) {
+ else if (strcmp(buf, "% ---- wireshark finale start ---- %\n") == 0) {
state = finale;
start_code(output, "finale");
continue;
}
}
else if (state == preamble) {
- if (strcmp(buf, "% ---- ethereal preamble end ---- %\n") == 0) {
+ if (strcmp(buf, "% ---- wireshark preamble end ---- %\n") == 0) {
state = null;
end_code(output);
continue;
@@ -98,7 +98,7 @@ int main(int argc, char **argv)
}
}
else if (state == hex) {
- if (strcmp(buf, "% ---- ethereal hex end ---- %\n") == 0) {
+ if (strcmp(buf, "% ---- wireshark hex end ---- %\n") == 0) {
state = null;
end_code(output);
continue;
@@ -108,7 +108,7 @@ int main(int argc, char **argv)
}
}
else if (state == finale) {
- if (strcmp(buf, "% ---- ethereal finale end ---- %\n") == 0) {
+ if (strcmp(buf, "% ---- wireshark finale end ---- %\n") == 0) {
state = null;
end_code(output);
continue;