2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-09-01 06:45:10 +00:00

Avoid symbol name clash to fix --enable-static-sudoers linking.

This commit is contained in:
Todd C. Miller
2021-09-15 11:19:03 -06:00
parent d7cdf1e47c
commit db750232c5
5 changed files with 64 additions and 64 deletions

View File

@@ -87,7 +87,7 @@ static bool
send_client_hello(int sock)
{
InterceptRequest msg = INTERCEPT_REQUEST__INIT;
ClientHello hello = CLIENT_HELLO__INIT;
InterceptHello hello = INTERCEPT_HELLO__INIT;
uint8_t *buf = NULL;
uint32_t msg_len;
size_t len;
@@ -124,7 +124,7 @@ done:
}
/*
* Receive HelloResponse from sudo over fd.
* Receive InterceptResponse from sudo over fd.
*/
InterceptResponse *
recv_intercept_response(int fd)
@@ -240,7 +240,7 @@ sudo_interposer_init(void)
}
/*
* Send ClientHello message to over the fd.
* Send InterceptHello message to over the fd.
*/
if (!send_client_hello(fd))
goto done;