Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 391011 | Differences between
and this patch

Collapse All | Expand All

(-)openssh-5.9p1/openbsd-compat/bsd-openpty.c.orig (+2 lines)
Lines 125-135 Link Here
125
	 * Try to push the appropriate streams modules, as described 
125
	 * Try to push the appropriate streams modules, as described 
126
	 * in Solaris pts(7).
126
	 * in Solaris pts(7).
127
	 */
127
	 */
128
#if defined(I_PUSH)
128
	ioctl(*aslave, I_PUSH, "ptem");
129
	ioctl(*aslave, I_PUSH, "ptem");
129
	ioctl(*aslave, I_PUSH, "ldterm");
130
	ioctl(*aslave, I_PUSH, "ldterm");
130
# ifndef __hpux
131
# ifndef __hpux
131
	ioctl(*aslave, I_PUSH, "ttcompat");
132
	ioctl(*aslave, I_PUSH, "ttcompat");
132
# endif /* __hpux */
133
# endif /* __hpux */
134
#endif
133
135
134
	return (0);
136
	return (0);
135
137
(-)openssh-5.9p1/config.h.in.orig (-3 / +3 lines)
Lines 99-105 Link Here
99
#undef DISABLE_LASTLOG
99
#undef DISABLE_LASTLOG
100
100
101
/* Define if you don't want to use your system's login() call */
101
/* Define if you don't want to use your system's login() call */
102
#undef DISABLE_LOGIN
102
#define DISABLE_LOGIN 1
103
103
104
/* Define if you don't want to use pututline() etc. to write [uw]tmp */
104
/* Define if you don't want to use pututline() etc. to write [uw]tmp */
105
#undef DISABLE_PUTUTLINE
105
#undef DISABLE_PUTUTLINE
Lines 111-123 Link Here
111
#undef DISABLE_SHADOW
111
#undef DISABLE_SHADOW
112
112
113
/* Define if you don't want to use utmp */
113
/* Define if you don't want to use utmp */
114
#undef DISABLE_UTMP
114
#define DISABLE_UTMP 1
115
115
116
/* Define if you don't want to use utmpx */
116
/* Define if you don't want to use utmpx */
117
#undef DISABLE_UTMPX
117
#undef DISABLE_UTMPX
118
118
119
/* Define if you don't want to use wtmp */
119
/* Define if you don't want to use wtmp */
120
#undef DISABLE_WTMP
120
#define DISABLE_WTMP 1
121
121
122
/* Define if you don't want to use wtmpx */
122
/* Define if you don't want to use wtmpx */
123
#undef DISABLE_WTMPX
123
#undef DISABLE_WTMPX

Return to bug 391011