From 8db429fd5daa08a8c56c78496c214f0527bce87b Mon Sep 17 00:00:00 2001 From: probe Date: Thu, 23 Jul 1992 21:17:14 +0000 Subject: [PATCH 1/1] Removed extraneous newlines Increased retry attempt before generating an error (prdb modification) --- incremental/afs.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/incremental/afs.c b/incremental/afs.c index 6b61ec5e..3714ad17 100644 --- a/incremental/afs.c +++ b/incremental/afs.c @@ -22,8 +22,8 @@ #include #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; -- 2.45.2