diff options
author | NIIBE Yutaka <[email protected]> | 2023-06-01 04:40:05 +0000 |
---|---|---|
committer | NIIBE Yutaka <[email protected]> | 2023-06-01 04:40:05 +0000 |
commit | 592f6bb89ad160d81e5a658e45df590120df8b60 (patch) | |
tree | 73594f7549b271bf2e9e759032fc7745614c7f17 /tests | |
parent | w32: Always include process information in HELLO. (diff) | |
download | libassuan-592f6bb89ad160d81e5a658e45df590120df8b60.tar.gz libassuan-592f6bb89ad160d81e5a658e45df590120df8b60.zip |
w32: Fix hello_line parsing for fd passing.
* tests/fdpassing.c (server_socket): Test with comma in the hello
line.
Signed-off-by: NIIBE Yutaka <[email protected]>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/fdpassing.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/fdpassing.c b/tests/fdpassing.c index 438c8c5..eef447f 100644 --- a/tests/fdpassing.c +++ b/tests/fdpassing.c @@ -229,6 +229,7 @@ server_socket (const char *socketname) log_fatal ("assuan_init_socket_server failed: %s\n", gpg_strerror (rc)); assuan_set_sock_nonce (ctx, &socket_nonce); + assuan_set_hello_line (ctx, "Hello, this is a socket server."); server_common (ctx); } |