]> andersk Git - moira.git/blobdiff - dbck/dbck.h
Code style cleanup. (No functional changes)
[moira.git] / dbck / dbck.h
index 3d39787db687a2ad1f60ff7fa4a628f69e92bb12..aacebee2ab9623ffb630723e05fb4be91de588f4 100644 (file)
@@ -1,13 +1,13 @@
 /* $Header$
  *
- * Declarations for SMS database consistancy checker
+ * Declarations for Moira database consistancy checker
  *
  *  (c) Copyright 1988 by the Massachusetts Institute of Technology.
  *  For copying and distribution information, please see the file
  *  <mit-copyright.h>.
  */
 
-#include <sms_app.h>
+#include <moira_site.h>
 #include <mit-copyright.h>
 
 #define MODE_ASK 1
 
 extern int debug, mode, fast, dcmenable, warn;
 extern struct hash *users, *machines, *clusters, *lists;
-extern struct hash *filesys, *nfsphys, *strings;
+extern struct hash *filesys, *nfsphys, *strings, *subnets, *string_dups;
 
 #define MAX_ID_VALUE 32765
 #define MIN_ID_VALUE 100
 
-#define dprintf                if (debug) printf
+#define dprintf if (debug) printf
 
 struct user {
-    char login[9];
-    char potype;
-    char *fullname;
-    int status;
-    int users_id;
-    int pobox_id;
+  char login[9];
+  char potype;
+  char *fullname;
+  int status;
+  int users_id;
+  int pobox_id;
+  int comment;
+  int modby;
+  int fmodby;
+  int pmodby;
+  int sigwho;
 };
 
 struct machine {
-    char name[33];
-    int mach_id;
-    int clucount;
+  char name[33];
+  char owner_type;
+  int owner_id;
+  int snet_id;
+  int mach_id;
+  int clucount;
+  int acomment;
+  int ocomment;
+  int creator;
+  int modby;
+};
+
+struct subnet {
+  char name[33];
+  char owner_type;
+  int owner_id;
+  int snet_id;
+  int modby;
 };
 
 struct cluster {
-    char name[33];
-    int clu_id;
+  char name[33];
+  int clu_id;
+  int modby;
 };
 
 struct list {
-    char name[33];
-    char acl_type;
-    int list_id;
-    int  acl_id;
-    int members;
+  char name[33];
+  char acl_type;
+  int list_id;
+  int  acl_id;
+  int members;
 };
 
 struct string {
-    char *name;
-    int string_id;
-    int refc;
+  char *name;
+  int string_id;
+  int refc;
 };
 
 struct filesys {
-    char name[33];
-    char dir[33];
-    char type;
-    int filsys_id;
-    int mach_id;
-    int owner;
-    int owners;
-    int phys_id;
+  char name[33];
+  char dir[81];
+  char type;
+  int filsys_id;
+  int mach_id;
+  int owner;
+  int owners;
+  int phys_id;
 };
 
 struct nfsphys {
-    char dir[33];
-    int mach_id;
-    int nfsphys_id;
-    int allocated;
-    int count;
+  char dir[33];
+  int mach_id;
+  int nfsphys_id;
+  int allocated;
+  int count;
 };
This page took 0.193503 seconds and 4 git commands to generate.