Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 779f80b

Browse files
committed
Fix typo in previous warning-silencing patch.
Fujii Masao
1 parent 8a75980 commit 779f80b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bin/pg_basebackup/receivelog.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -433,7 +433,7 @@ ReceiveXlogStream(PGconn *conn, XLogRecPtr startpos, uint32 timeline,
433433
timeout.tv_sec = 1; /* Always sleep at least 1 sec */
434434
else
435435
timeout.tv_sec = secs;
436-
timeout.tv_sec = usecs;
436+
timeout.tv_usec = usecs;
437437
timeoutptr = &timeout;
438438
}
439439
else

0 commit comments

Comments
 (0)