64f3c1d688
Disable all utmp bits. This will have no effect on 8.0 and earlier, since the utmp code was broken to begin with. It doesn't read from the proper utmp file, so it could have never worked. Approved by: miwi (portmgr) Feature safe: yes
19 lines
327 B
C++
19 lines
327 B
C++
--- coda-src/venus/user.cc
|
|
+++ coda-src/venus/user.cc
|
|
@@ -42,7 +42,6 @@
|
|
#include <netinet/in.h>
|
|
#include <errno.h>
|
|
#include <struct.h>
|
|
-#include <utmp.h>
|
|
#include <pwd.h>
|
|
|
|
#include <rpc2/rpc2.h>
|
|
@@ -167,7 +166,7 @@
|
|
|
|
int ConsoleUser(uid_t user)
|
|
{
|
|
-#ifdef __CYGWIN32__
|
|
+#if 1
|
|
return(1);
|
|
|
|
#elif defined(__linux__)
|