]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/tools/fstype.c
- Move Python variables from Job to Bacula. They are
[bacula/bacula] / bacula / src / tools / fstype.c
index 4003d62f8befea37b30bdebb4d9c73fe63eda3fe..38795b2f4f3f1996b59fb951ac9ce0ffcde501bf 100644 (file)
@@ -6,30 +6,28 @@
  *   Version $Id$
  *
  */
-
 /*
-   Copyright (C) 2004 Kern Sibbald
+   Copyright (C) 2004-2005 Kern Sibbald
 
    This program is free software; you can redistribute it and/or
-   modify it under the terms of the GNU General Public License as
-   published by the Free Software Foundation; either version 2 of
-   the License, or (at your option) any later version.
+   modify it under the terms of the GNU General Public License
+   version 2 as amended with additional clauses defined in the
+   file LICENSE in the main source directory.
 
    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
-   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-   General Public License for more details.
-
-   You should have received a copy of the GNU General Public
-   License along with this program; if not, write to the Free
-   Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
-   MA 02111-1307, USA.
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
+   the file LICENSE for additional details.
 
  */
 
 #include "bacula.h"
 #include "findlib/find.h"
 
+/* Dummy functions */
+int generate_daemon_event(JCR *jcr, const char *event) 
+   { return 1; }
+
 static void usage()
 {
    fprintf(stderr, _(
@@ -58,11 +56,11 @@ main (int argc, char *const *argv)
    while ((ch = getopt(argc, argv, "v?")) != -1) {
       switch (ch) {
          case 'v':
-           verbose = 1;
-           break;
+            verbose = 1;
+            break;
          case '?':
-        default:
-           usage();
+         default:
+            usage();
 
       }
    }
@@ -75,14 +73,14 @@ main (int argc, char *const *argv)
 
    for (i = 0; i < argc; --argc, ++argv) {
       if (fstype(*argv, fs, sizeof(fs))) {
-        if (verbose) {
+         if (verbose) {
             printf("%s: %s\n", *argv, fs);
-        } else {
-           puts(fs);
-        }
+         } else {
+            puts(fs);
+         }
       } else {
          fprintf(stderr, "%s: unknown\n", *argv);
-        status = 1;
+         status = 1;
       }
    }