tpm: Fix recently introduced syntax error

--

Fixes-commit: 18eff31496
This commit is contained in:
Werner Koch 2022-04-08 16:06:09 +02:00
parent 8945f1aedf
commit ca3e46a587
No known key found for this signature in database
GPG Key ID: E3FDFF218E45B72B
1 changed files with 2 additions and 2 deletions

View File

@ -620,7 +620,7 @@ main (int argc, char **argv )
socket_name = create_socket_name (TPM2DAEMON_SOCK_NAME);
fd = create_server_socket (socket_name,
&redir_socket_name,
&socket_nonce));
&socket_nonce);
}
res = npth_attr_init (&tattr);
@ -673,7 +673,7 @@ main (int argc, char **argv )
/* Create the socket. */
socket_name = create_socket_name (TPM2DAEMON_SOCK_NAME);
fd = create_server_socket (socket_name,
&redir_socket_name, &socket_nonce));
&redir_socket_name, &socket_nonce);
fflush (NULL);