1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2025-01-30 05:39:12 +02:00

Improve comment, remove duplicated header and extraneous braces.

This commit is contained in:
David Steele 2019-03-15 10:25:24 +04:00
parent 5554377632
commit a6e219bc8b

View File

@ -14,14 +14,13 @@ Archive Get File
#include "info/infoArchive.h"
#include "postgres/interface.h"
#include "storage/helper.h"
#include "storage/helper.h"
/***********************************************************************************************************************************
Check if a WAL file exists in the repository
***********************************************************************************************************************************/
#define FUNCTION_LOG_ARCHIVE_GET_CHECK_RESULT_TYPE \
#define FUNCTION_LOG_ARCHIVE_GET_CHECK_RESULT_TYPE \
ArchiveGetCheckResult
#define FUNCTION_LOG_ARCHIVE_GET_CHECK_RESULT_FORMAT(value, buffer, bufferSize) \
#define FUNCTION_LOG_ARCHIVE_GET_CHECK_RESULT_FORMAT(value, buffer, bufferSize) \
objToLog(&value, "ArchiveGetCheckResult", buffer, bufferSize)
typedef struct ArchiveGetCheckResult
@ -157,11 +156,9 @@ archiveGetFile(
cipherBlockNew(cipherModeDecrypt, cipherType, bufNewStr(archiveGetCheckResult.cipherPass), NULL)));
}
// If file is gzipped then add the decompression filter
// If file is compressed then add the decompression filter
if (strEndsWithZ(archiveGetCheckResult.archiveFileActual, "." GZIP_EXT))
{
ioFilterGroupAdd(filterGroup, gzipDecompressFilter(gzipDecompressNew(false)));
}
ioWriteFilterGroupSet(storageFileWriteIo(destination), filterGroup);