Another small closing bracket fixup.
authorsharpe <sharpe@f5534014-38df-0310-8fa8-9805f1628bb7>
Mon, 23 Feb 2004 05:44:34 +0000 (05:44 +0000)
committersharpe <sharpe@f5534014-38df-0310-8fa8-9805f1628bb7>
Mon, 23 Feb 2004 05:44:34 +0000 (05:44 +0000)
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@10196 f5534014-38df-0310-8fa8-9805f1628bb7

editcap.c

index 5c7b1a854003eacbd32d1ad89abc2e5a5a250838..9c5bd0e88302709850cb644b406602d0609fe254 100644 (file)
--- 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");