blob: f4f9264cc95580c2df9f409198beedd7ee77e39b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
*** ftpd.c.bak Wed Jan 1 22:10:05 1997
--- src/ftpd.c Wed Jan 1 22:10:14 1997
***************
*** 2503,2508 ****
--- 2503,2514 ----
void
dologout(int status)
{
+ /*
+ * Prevent reception of SIGURG from resulting in a resumption
+ * back to the main program loop.
+ */
+ transflag = 0;
+
if (logged_in) {
(void) seteuid((uid_t) 0);
logwtmp(ttyline, "", "");
|