From 5785e95fe32121cb0a4ee30bceb7743cf463c500 Mon Sep 17 00:00:00 2001 From: Deon George Date: Fri, 24 Jan 2014 16:49:50 +1100 Subject: [PATCH] Fixed help output --- tsmpipe.c | 4 ++-- tsmpipe.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tsmpipe.c b/tsmpipe.c index 8152819..faff581 100644 --- a/tsmpipe.c +++ b/tsmpipe.c @@ -78,7 +78,7 @@ void usage(void) { " -s and -f are required arguments for (-A/ -B operations):\n" " -s fsname Name of filesystem in TSM\n" " -f filepath Path to file within filesystem in TSM\n" - " -l length Length of object to store. If guesstimating too large\n" + " -l length Length of object to store. If guesstimating, too large\n" " is better than too small\n" " -D desc Description of archive object\n" " -P pitdate PITDate (mmddYYYY[:HHMMSS]) (BACKUP Objects)\n" @@ -88,7 +88,7 @@ void usage(void) { " -E expdate Expire Date upper bound (mmddYYYY[:HHMMSS]) (ARCHIVE Objects)\n" " -O options Extra options to pass to dsmInitEx\n" #ifdef USE_DIGEST - " -m digest Calculate digest for data being stored in TSM, eg: md5, sha1, sha512..." + " -m digest Calculate digest for data being stored in TSM, eg: md5, sha1...\n" #endif " -v Verbose. More -v's gives more verbosity\n" ,_TSMPIPE_VERSION); diff --git a/tsmpipe.h b/tsmpipe.h index 1953ae1..0cce59c 100644 --- a/tsmpipe.h +++ b/tsmpipe.h @@ -1,4 +1,4 @@ -#define _TSMPIPE_VERSION "1.5.4" +#define _TSMPIPE_VERSION "1.5.4.1" #define ACTION_INFO 1 #define ACTION_CREATE 2