Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 713790
Collapse All | Expand All

(-)a/telnet/misc-proto.h (-1 / +1 lines)
Lines 63-69 Link Here
63
#ifndef	__MISC_PROTO__
63
#ifndef	__MISC_PROTO__
64
#define	__MISC_PROTO__
64
#define	__MISC_PROTO__
65
65
66
#include <sys/cdefs.h>
66
#define	__P(protos) protos /* full-blown ANSI C */
67
67
68
void auth_encrypt_init __P((char *, char *, char *, int));
68
void auth_encrypt_init __P((char *, char *, char *, int));
69
void auth_encrypt_user __P((char *));
69
void auth_encrypt_user __P((char *));
(-)a/telnet/ring.h (-1 / +1 lines)
Lines 28-35 Link Here
28
 *
28
 *
29
 */
29
 */
30
30
31
#include <sys/cdefs.h>
32
#include <sys/types.h>
31
#include <sys/types.h>
32
#define	__P(protos) protos /* full-blown ANSI C */
33
#define P __P
33
#define P __P
34
34
35
/*
35
/*
(-)a/telnetd/sys_term.c (+2 lines)
Lines 838-845 cleanup (int sig) Link Here
838
   * receive another signal while we're in that function. */
838
   * receive another signal while we're in that function. */
839
  sigfillset(&sigset);
839
  sigfillset(&sigset);
840
  sigprocmask(SIG_SETMASK, &sigset, &sigset);
840
  sigprocmask(SIG_SETMASK, &sigset, &sigset);
841
#if defined(logwtmp)
841
  if (logout (p))
842
  if (logout (p))
842
    logwtmp (p, "", "");
843
    logwtmp (p, "", "");
844
#endif
843
  sigprocmask(SIG_SETMASK, &sigset, NULL);
845
  sigprocmask(SIG_SETMASK, &sigset, NULL);
844
#ifdef PARANOID_TTYS
846
#ifdef PARANOID_TTYS
845
  /*
847
  /*

Return to bug 713790