This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
char *
BuildRestoreCommand (const char *restoreCommand, const char *xlogpath, const char *xlogfname, const char *lastRestartPointFname)
Function Documentation
◆ BuildRestoreCommand()
char * BuildRestoreCommand
(
const char *
restoreCommand,
const char *
xlogpath,
const char *
xlogfname,
const char *
lastRestartPointFname
)
Definition at line 39 of file archive.c.
43{
44 char *nativePath = NULL;
45 char *result;
46
47 if (xlogpath)
48 {
51 }
52
54 xlogfname, lastRestartPointFname, nativePath);
55
56 if (nativePath)
58
59 return result;
60}
char * pstrdup(const char *in)
void pfree(void *pointer)
char * replace_percent_placeholders(const char *instr, const char *param_name, const char *letters,...)
void make_native_path(char *filename)
References make_native_path(), pfree(), pstrdup(), and replace_percent_placeholders().
Referenced by RestoreArchivedFile().