]> git.wh0rd.org - dump.git/blobdiff - restore/main.c
Added version in usage text.
[dump.git] / restore / main.c
index f979560c0a3a5853cd13d1a227d125ffbd81d14b..61ad4e6407a128d4b07d7ad244b575801f928d10 100644 (file)
@@ -2,8 +2,7 @@
  *     Ported to Linux's Second Extended File System as part of the
  *     dump and restore backup suit
  *     Remy Card <card@Linux.EU.Org>, 1994-1997
- *      Stelian Pop <pop@cybercable.fr>, 1999 
- *
+ *     Stelian Pop <pop@cybercable.fr>, 1999 
  */
 
 /*
  */
 
 #ifndef lint
-static const char copyright[] =
-"@(#) Copyright (c) 1983, 1993\n\
-       The Regents of the University of California.  All rights reserved.\n";
-#endif /* not lint */
-
-#ifndef lint
-#if 0
-static char sccsid[] = "@(#)main.c     8.6 (Berkeley) 5/4/95";
-#endif
 static const char rcsid[] =
-       "$Id: main.c,v 1.3 1999/10/11 12:59:20 stelian Exp $";
+       "$Id: main.c,v 1.6 1999/10/13 09:57:21 stelian Exp $";
 #endif /* not lint */
 
 #include <sys/param.h>
@@ -361,12 +351,20 @@ main(int argc, char *argv[])
 static void
 usage(void)
 {
-       (void)fprintf(stderr, "usage:\t%s\n\t%s\n\t%s\n\t%s\n\t%s\n",
-         "restore -i [-chkmuvy] [-b blocksize] [-f file] [-s fileno]",
-         "restore -r [-ckuvy] [-b blocksize] [-f file] [-s fileno]",
-         "restore -R [-ckuvy] [-b blocksize] [-f file] [-s fileno]",
-         "restore -x [-chkmuvy] [-b blocksize] [-f file] [-s fileno] [file ...]",
-         "restore -t [-chkuvy] [-b blocksize] [-f file] [-s fileno] [file ...]");
+#ifdef KERBEROS
+#define kerbflag "k"
+#else
+#define kerbflag
+#endif
+       (void)fprintf(stderr, 
+         "%s %s\n", __progname, _DUMP_VERSION);
+       (void)fprintf(stderr,
+         "usage:\t%s%s\n\t%s%s\n\t%s%s\n\t%s%s\n\t%s%s\n",
+         __progname, " -i [-ch" kerbflag "muvy] [-b blocksize] [-f file] [-s fileno]",
+         __progname, " -r [-c" kerbflag "uvy] [-b blocksize] [-f file] [-s fileno]",
+         __progname, " -R [-c" kerbflag "uvy] [-b blocksize] [-f file] [-s fileno]",
+         __progname, " -x [-ch" kerbflag "muvy] [-b blocksize] [-f file] [-s fileno] [file ...]",
+         __progname, " -t [-ch" kerbflag "kuvy] [-b blocksize] [-f file] [-s fileno] [file ...]");
        exit(1);
 }