bugzilla-daemon at mindrot.org
2002-Jun-28 05:50 UTC
[Bug 315] New: add miissing includes and defines for FREEBSD
http://bugzilla.mindrot.org/show_bug.cgi?id=315
Summary: add miissing includes and defines for FREEBSD
Product: Portable OpenSSH
Version: -current
Platform: Other
OS/Version: FreeBSD
Status: NEW
Severity: normal
Priority: P2
Component: Build system
AssignedTo: openssh-unix-dev at mindrot.org
ReportedBy: dirk.meyer at dinoex.sub.org
--- session.c.orig Wed Jun 26 15:51:06 2002
+++ session.c Wed Jun 26 18:20:35 2002
@@ -64,6 +64,13 @@
#define is_winnt (GetVersion() < 0x80000000)
#endif
+#ifdef __FreeBSD__
+#include <libutil.h>
+#include <syslog.h>
+#include <time.h>
+#define _PATH_CHPASS "/usr/bin/passwd"
+#endif /* __FreeBSD__ */
+
/* func */
Session *session_new(void);
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
Dag-Erling Smorgrav
2002-Jul-01 11:31 UTC
[Bug 315] New: add miissing includes and defines for FREEBSD
bugzilla-daemon at mindrot.org writes:> Summary: add miissing includes and defines for FREEBSDThis is bogus; FreeBSD does not need this patch. Dirk, could you please coordinate your porting efforts with me? DES -- Dag-Erling Smorgrav - des at ofug.org
Reasonably Related Threads
- [Bug 315] add missing includes and defines for FREEBSD
- [Bug 315] add miissing includes and defines for FREEBSD
- [Fwd: Kerberos buglet in OpenSSH-3.3p1]
- [PATCH]: Cygwin: Allow sshd to switch user context without password
- [Bug 101] session.c modifications for correct UNICOS behavior