aboutsummaryrefslogtreecommitdiffstats
path: root/editcap.c
diff options
context:
space:
mode:
authorsharpe <sharpe@f5534014-38df-0310-8fa8-9805f1628bb7>2004-02-23 05:44:34 +0000
committersharpe <sharpe@f5534014-38df-0310-8fa8-9805f1628bb7>2004-02-23 05:44:34 +0000
commit946d22d89d4fcf974b38e99885fad8a4019e576b (patch)
tree6481abd6e53672c97eaab8a4296bea7abbd9a1ac /editcap.c
parent5a7ebc45d6a8700bc5f0a78412634f5dd65b41fe (diff)
Another small closing bracket fixup.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10196 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'editcap.c')
-rw-r--r--editcap.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/editcap.c b/editcap.c
index 5c7b1a8540..9c5bd0e883 100644
--- a/editcap.c
+++ b/editcap.c
@@ -1,7 +1,7 @@
/* Edit capture files. We can delete records, adjust timestamps, or
* simply convert from one format to another format.
*
- * $Id: editcap.c,v 1.30 2004/02/23 04:16:37 sharpe Exp $
+ * $Id: editcap.c,v 1.31 2004/02/23 05:44:34 sharpe Exp $
*
* Originally written by Richard Sharpe.
* Improved by Guy Harris.
@@ -230,7 +230,7 @@ set_time_adjustment(char *optarg)
} else {
val = strtol(optarg, &frac, 10);
if (frac == NULL || frac == optarg || val == LONG_MIN || val == LONG_MAX) {
- fprintf(stderr, "editcap: \"%s\" is not a valid time adjustment\n",
+ fprintf(stderr, "editcap: \"%s\" is not a valid ime adjustment\n",
optarg);
exit(1);
}
@@ -274,7 +274,7 @@ static void usage(void)
const char *string;
fprintf(stderr, "Usage: editcap [-r] [-h] [-v] [-T <encap type>] [-F <capture type>]\n");
- fprintf(stderr, " [-s <snaplen>] [-t <time adjustment]\n");
+ fprintf(stderr, " [-s <snaplen>] [-t <time adjustment>]\n");
fprintf(stderr, " <infile> <outfile> [ <record#>[-<record#>] ... ]\n");
fprintf(stderr, " where\t-r specifies that the records specified should be kept, not deleted, \n");
fprintf(stderr, " default is to delete\n");