From: probe Date: Thu, 23 Jul 1992 21:17:14 +0000 (+0000) Subject: Removed extraneous newlines X-Git-Tag: release77~465 X-Git-Url: http://andersk.mit.edu/gitweb/moira.git/commitdiff_plain/8db429fd5daa08a8c56c78496c214f0527bce87b Removed extraneous newlines Increased retry attempt before generating an error (prdb modification) --- 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;