]> andersk Git - moira.git/commitdiff
Removed extraneous newlines
authorprobe <probe>
Thu, 23 Jul 1992 21:17:14 +0000 (21:17 +0000)
committerprobe <probe>
Thu, 23 Jul 1992 21:17:14 +0000 (21:17 +0000)
Increased retry attempt before generating an error (prdb modification)

incremental/afs.c

index 6b61ec5e0a74edefb463a485d219bb9aa2d02ad1..3714ad1720df6f4431ba8bdb3a8892500dbb70bc 100644 (file)
@@ -22,8 +22,8 @@
 #include <afs/pterror.h>
 
 #define STOP_FILE "/moira/afs/noafs"
-#define PR_TRIES 2
-#define PR_DELAY 5
+#define PR_TRIES 3
+#define PR_DELAY 15
 
 #define file_exists(file) (access((file), F_OK) == 0)
 
@@ -513,7 +513,7 @@ int afterc;
     if (afterc < FS_CREATE) {
        if (!strcmp(before[FS_TYPE], "AFS"))
            critical_alert("incremental",
-                          "Could not delete AFS filesystem %s: Operation not supported\n",
+                          "Could not delete AFS filesystem %s: Operation not supported",
                           before[FS_NAME]);
        return;
     }
@@ -521,11 +521,11 @@ int afterc;
     if (!strcmp(after[FS_TYPE], "AFS")) {
        if (strcmp(before[FS_TYPE], "AFS")) {
            critical_alert("incremental",
-                          "Cannot convert %s to an AFS filesystem: Operation not supported\n",
+                          "Cannot convert %s to an AFS filesystem: Operation not supported",
                           after[FS_NAME]);
        } else {
            critical_alert("incremental",
-                          "Cannot change attributes of AFS filesystem %s: Operation not supported\n",
+                          "Cannot change attributes of AFS filesystem %s: Operation not supported",
                           after[FS_NAME]);
        }
        return;
This page took 0.051778 seconds and 5 git commands to generate.