Skip to content

Commit 710095c

Browse files
64-bitmanchrisbra
authored andcommitted
patch 9.1.1723: Missing ifdefs
Problem: Missing ifdefs (after v9.1.1719) Solution: Add ifdef ELAPSED_FUNC (Foxe Chen). closes: #18178 Signed-off-by: Foxe Chen <chen.foxe@gmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
1 parent 59d496a commit 710095c

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/os_unix.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9637,8 +9637,10 @@ socket_server_send(
96379637
if (pending.result != NULL)
96389638
break;
96399639

9640+
#ifdef ELAPSED_FUNC
96409641
if (ELAPSED_FUNC(start_tv) >= (timeout > 0 ? timeout : 1000))
96419642
break;
9643+
#endif
96429644
}
96439645

96449646
if (pending.result == NULL)

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -724,6 +724,8 @@ static char *(features[]) =
724724

725725
static int included_patches[] =
726726
{ /* Add new patch number below this line */
727+
/**/
728+
1723,
727729
/**/
728730
1722,
729731
/**/

0 commit comments

Comments
 (0)