aboutsummaryrefslogtreecommitdiffstats
path: root/text2pcap.c
diff options
context:
space:
mode:
authorrichardv <richardv@f5534014-38df-0310-8fa8-9805f1628bb7>2007-08-21 21:25:53 +0000
committerrichardv <richardv@f5534014-38df-0310-8fa8-9805f1628bb7>2007-08-21 21:25:53 +0000
commit1c6f89217d7f3ba36c917637604e76c131b86454 (patch)
tree9134b3860ff6b03446fd923fe4e90d5d4565316d /text2pcap.c
parent6073db48a2a55e3248689d92d8242edcb42eb66f (diff)
fix usage message for -o option
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@22574 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'text2pcap.c')
-rw-r--r--text2pcap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/text2pcap.c b/text2pcap.c
index c213824804..b844b611e1 100644
--- a/text2pcap.c
+++ b/text2pcap.c
@@ -1076,7 +1076,7 @@ parse_options (int argc, char *argv[])
case 'm': max_offset = strtol(optarg, NULL, 0); break;
case 'o':
if (optarg[0]!='h' && optarg[0] != 'o') {
- fprintf(stderr, "Bad argument for '-e': %s\n", optarg);
+ fprintf(stderr, "Bad argument for '-o': %s\n", optarg);
usage();
}
offset_base = (optarg[0]=='o') ? 8 : 16;