1
1

* x11conn.c (x_io_error_handler): Close the X11 connection when

a protocol error occurs. Otherwise the X11 connection is held
	open, which may keep ssh from closing the connection.
Этот коммит содержится в:
Roland Illig 2005-04-06 18:04:43 +00:00
родитель c5a443ca87
Коммит e64958776a
2 изменённых файлов: 7 добавлений и 0 удалений

Просмотреть файл

@ -1,3 +1,9 @@
2005-04-06 Roland Illig <roland.illig@gmx.de>
* x11conn.c (x_io_error_handler): Close the X11 connection when
a protocol error occurs. Otherwise the X11 connection is held
open, which may keep ssh from closing the connection.
2005-03-28 Pavel Roskin <proski@gnu.org> 2005-03-28 Pavel Roskin <proski@gnu.org>
* screen.c (chdir_other_panel): When used on a file entry, move * screen.c (chdir_other_panel): When used on a file entry, move

Просмотреть файл

@ -103,6 +103,7 @@ static int x_io_error_handler (Display *dpy)
static int x_error_handler (Display *dpy, XErrorEvent *ee) static int x_error_handler (Display *dpy, XErrorEvent *ee)
{ {
(void) ee; (void) ee;
(void) func_XCloseDisplay (dpy);
return x_io_error_handler (dpy); return x_io_error_handler (dpy);
} }