From: Heikki Linnakangas Date: Tue, 2 Oct 2012 16:59:00 +0000 (+0300) Subject: Fix typo in previous warning-silencing patch. X-Git-Tag: REL9_2_2~90 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=87b6a3989fec4a8d10de910671ab702e07aa85cf;p=postgresql Fix typo in previous warning-silencing patch. Fujii Masao --- diff --git a/src/bin/pg_basebackup/receivelog.c b/src/bin/pg_basebackup/receivelog.c index 805e9b87b3..98c4b7a1e5 100644 --- a/src/bin/pg_basebackup/receivelog.c +++ b/src/bin/pg_basebackup/receivelog.c @@ -433,7 +433,7 @@ ReceiveXlogStream(PGconn *conn, XLogRecPtr startpos, uint32 timeline, timeout.tv_sec = 1; /* Always sleep at least 1 sec */ else timeout.tv_sec = secs; - timeout.tv_sec = usecs; + timeout.tv_usec = usecs; timeoutptr = &timeout; } else