提交 38e93721 编写于 作者: D Daniel P. Berrangé

remote: conditionally declare tty variable for non-Win32 platforms

The 'tty' variable is only used on Win32. Instead of just annotating it
with ATTRIBUTE_UNUSED, make its declaration conditional on WIN32 so that
it is clear why it is not used.
Reviewed-by: NFabiano Fidêncio <fidencio@redhat.com>
Signed-off-by: NDaniel P. Berrangé <berrange@redhat.com>
上级 6a2e551f
......@@ -803,7 +803,9 @@ doRemoteOpen(virConnectPtr conn,
VIR_AUTOFREE(char *) knownHosts = NULL;
bool sanity = true;
bool verify = true;
bool tty ATTRIBUTE_UNUSED = true;
#ifndef WIN32
bool tty = true;
#endif
/* We handle *ALL* URIs here. The caller has rejected any
* URIs we don't care about */
......@@ -908,7 +910,9 @@ doRemoteOpen(virConnectPtr conn,
EXTRACT_URI_ARG_BOOL("no_sanity", sanity);
EXTRACT_URI_ARG_BOOL("no_verify", verify);
#ifndef WIN32
EXTRACT_URI_ARG_BOOL("no_tty", tty);
#endif
if (STRCASEEQ(var->name, "authfile")) {
/* Strip this param, used by virauth.c */
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册