Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nxssh
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Алексей Аляев
nxssh
Commits
b19be3b6
Commit
b19be3b6
authored
Jun 20, 2017
by
Vitaly Lipatov
Committed by
Pavel Vainerman
Oct 04, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove untrusted warning (eterbug #11593)
parent
4a41a13d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
clientloop.c
clientloop.c
+6
-4
No files found.
clientloop.c
View file @
b19be3b6
...
...
@@ -448,8 +448,9 @@ client_x11_get_proto(const char *display, const char *xauth_path,
if
(
f
)
pclose
(
f
);
}
else
{
debug
(
"Warning: untrusted X11 forwarding setup failed: "
"xauth key data not generated"
);
// FIXME eterbug #11676
//debug("Warning: untrusted X11 forwarding setup failed: "
// "untrusted xauth key data not generated");
}
}
...
...
@@ -460,8 +461,9 @@ client_x11_get_proto(const char *display, const char *xauth_path,
/* Don't fall back to fake X11 data for untrusted forwarding */
if
(
!
trusted
&&
!
got_data
)
{
error
(
"Warning: untrusted X11 forwarding setup failed: "
"xauth key data not generated"
);
// FIXME eterbug #11676
//error("Warning: untrusted X11 forwarding setup failed: "
// "xauth key data not generated");
return
-
1
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment