aboutsummaryrefslogtreecommitdiff
path: root/src/bin/pg_basebackup/walmethods.c
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2017-08-02 22:44:46 -0400
committerPeter Eisentraut <peter_e@gmx.net>2017-08-02 22:45:48 -0400
commit5ff3d73813ebcc3ff80be77c30b458d728951036 (patch)
tree22f26f581ca843c28a01bd18741c15524ec23642 /src/bin/pg_basebackup/walmethods.c
parent4d57e83816778c6f61ea35c697f937a6f9c3c3de (diff)
downloadpostgresql-5ff3d73813ebcc3ff80be77c30b458d728951036.tar.gz
postgresql-5ff3d73813ebcc3ff80be77c30b458d728951036.zip
Add new files to nls.mk and add translation markers
Diffstat (limited to 'src/bin/pg_basebackup/walmethods.c')
-rw-r--r--src/bin/pg_basebackup/walmethods.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_basebackup/walmethods.c b/src/bin/pg_basebackup/walmethods.c
index 06d8ab5bc29..2ab5ae93e09 100644
--- a/src/bin/pg_basebackup/walmethods.c
+++ b/src/bin/pg_basebackup/walmethods.c
@@ -404,7 +404,7 @@ typedef struct TarMethodData
static TarMethodData *tar_data = NULL;
#define tar_clear_error() tar_data->lasterror[0] = '\0'
-#define tar_set_error(msg) strlcpy(tar_data->lasterror, msg, sizeof(tar_data->lasterror))
+#define tar_set_error(msg) strlcpy(tar_data->lasterror, _(msg), sizeof(tar_data->lasterror))
static const char *
tar_getlasterror(void)