diff options
Diffstat (limited to 'net/gnu-radius/files/patch-radwho_radwho.c')
| -rw-r--r-- | net/gnu-radius/files/patch-radwho_radwho.c | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/net/gnu-radius/files/patch-radwho_radwho.c b/net/gnu-radius/files/patch-radwho_radwho.c new file mode 100644 index 000000000000..17848c511107 --- /dev/null +++ b/net/gnu-radius/files/patch-radwho_radwho.c @@ -0,0 +1,43 @@ +--- radwho/radwho.c.orig 2010-01-21 22:29:51.000000000 +0100 ++++ radwho/radwho.c 2010-01-21 22:37:37.000000000 +0100 +@@ -41,7 +41,8 @@ + int want_rad_record(struct radutmp *rt); + + /* UTMP stuff. Uses utmpx on svr4 */ +-#if defined(__svr4__) || defined(__sgi) ++#include <sys/param.h> ++#if defined(__svr4__) || defined(__sgi) || (defined(__FreeBSD__) && __FreeBSD_version >= 900007) + # include <utmpx.h> + # include <sys/fcntl.h> + # define utmp utmpx +@@ -49,7 +50,9 @@ + # define UT_LINESIZE 32 + # define UT_HOSTSIZE 257 + # undef UTMP_FILE ++/* + # define UTMP_FILE UTMPX_FILE ++*/ + # undef WTMP_FILE + # define WTMP_FILE WTMPX_FILE + #else +@@ -60,13 +63,19 @@ + # define UT_LINESIZE 32 + # define UT_HOSTSIZE 64 + #endif +-#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(bsdi) ++#if (defined(__FreeBSD__) && __FreeBSD_version < 900007) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(bsdi) + # ifndef UTMP_FILE + # define UTMP_FILE "/var/run/utmp" + # endif + # define ut_user ut_name + #endif + ++#if defined(__FreeBSD__) && __FreeBSD_version >= 900007 ++# define UTMP_FILE "/var/run/utmp" ++# define ut_name ut_user ++# define ut_time ut_tv.tv_sec ++#endif ++ + #define P_CONSOLE -1 /* Special radutmp type value for local users */ + + int fingerd; /* Are we run as fingerd */ |
