]> andersk Git - moira.git/commitdiff
Suppress warning about ownership changes - administrators have been warned.
authorprobe <probe>
Fri, 28 Aug 1992 12:31:57 +0000 (12:31 +0000)
committerprobe <probe>
Fri, 28 Aug 1992 12:31:57 +0000 (12:31 +0000)
Suppress Moira "glom" query when previous user status is 0.

incremental/afs.c

index 44c1969a7df2cf70a8d0248aa0d4765063a96392..4171c2a76c5cac4c1a0e7c9004fecdb9b48857b6 100644 (file)
@@ -170,7 +170,7 @@ int afterc;
            return;
        }
 
-       if (beforec) {
+       if (bstate != 0) {
            /* Reactivating a user; get his group list */
            gethostname(hostname, sizeof(hostname));
            code = mr_connect(hostname);
@@ -374,7 +374,8 @@ int afterc;
      *    Path change:  remount
      *    Type change:  ERR<-->AFS
      */
-    
+
+#if 0
     if (strcmp(before[FS_OWNER], after[FS_OWNER]) ||
        strcmp(before[FS_OWNERS], after[FS_OWNERS]))
     {
@@ -382,6 +383,7 @@ int afterc;
                       "Cannot change ownership of filesystem %s: Operation not yet supported",
                       after[FS_NAME]);
     }
+#endif
 
     sprintf(cmd, "%s/perl -I%s %s/afs_rename.pl %s %s %s %s %s %s %s %s %s %s",
            BIN_DIR, BIN_DIR, BIN_DIR,
This page took 0.08118 seconds and 5 git commands to generate.