Skip to content

Commit 397c9eb

Browse files
author
itagaki.takahiro
committed
Fix a bug in extracting filename from archive_command.
git-svn-id: http://pg-rman.googlecode.com/svn/trunk@33 182aca00-e38e-11de-a668-6fd11605f5ce
1 parent 7889caf commit 397c9eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

init.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ do_init(void)
7575

7676
if ((fname = strstr(begin, "%f")) != NULL)
7777
{
78-
while (strchr(" \n\r\t\v""'", *begin))
78+
while (strchr(" \n\r\t\v\"'", *begin))
7979
begin++;
8080
fname--;
8181
while (fname > begin && strchr(" \n\r\t\v\"'/", fname[-1]))

0 commit comments

Comments
 (0)