1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-05 07:21:24 +03:00

Add new files to nls.mk and add translation markers

This commit is contained in:
Peter Eisentraut
2017-08-02 22:44:46 -04:00
parent 4d57e83816
commit 5ff3d73813
3 changed files with 4 additions and 4 deletions

View File

@ -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)