summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2000-05-10 11:08:08 +0000
committerAndrew Tridgell <tridge@samba.org>2000-05-10 11:08:08 +0000
commit9c598e571decb449607042ba9628f68de9b45043 (patch)
tree071998ce08c946d044fac3c77e34def69c4cdef6
parent92109d7b3c06f240452d39f669ecb8c9c86ab610 (diff)
downloadsamba-9c598e571decb449607042ba9628f68de9b45043.tar.gz
samba-9c598e571decb449607042ba9628f68de9b45043.tar.xz
samba-9c598e571decb449607042ba9628f68de9b45043.zip
patch from Dominik Kubla <dominik.kubla@uni-mainz.de>
-rw-r--r--source/profile/profile.c5
-rw-r--r--source/smbd/connection.c6
2 files changed, 4 insertions, 7 deletions
diff --git a/source/profile/profile.c b/source/profile/profile.c
index 72954f90c9f..c2d9b4ce89e 100644
--- a/source/profile/profile.c
+++ b/source/profile/profile.c
@@ -23,10 +23,7 @@
#include "includes.h"
#ifdef WITH_PROFILE
-
-#ifndef HAVE_SYSV_IPC
-#error "You must have SYSV shared memory to compile in the profiling code"
-#endif
+#include <sys/shm.h>
extern int DEBUGLEVEL;
diff --git a/source/smbd/connection.c b/source/smbd/connection.c
index aa49f8cf7cf..bc014c300d6 100644
--- a/source/smbd/connection.c
+++ b/source/smbd/connection.c
@@ -340,7 +340,7 @@ static void utmp_yield(pid_t pid, const connection_struct *conn)
}
}
-static void utmp_claim(const struct connect_record *crec, const connection_struct *conn)
+static void utmp_claim(const struct connections_data *crec, const connection_struct *conn)
{
struct utmp u;
@@ -354,8 +354,8 @@ static void utmp_claim(const struct connect_record *crec, const connection_struc
return;
}
- DEBUG(2,("utmp_claim: conn: user:%s cnum:%d i:%d\n",
- conn->user, conn->cnum, i));
+ DEBUG(2,("utmp_claim: conn: user:%s cnum:%d\n",
+ conn->user, conn->cnum));
DEBUG(2,("utmp_claim: crec: pid:%d, cnum:%d name:%s addr:%s mach:%s DNS:%s\n",
crec->pid, crec->cnum, crec->name, crec->addr, crec->machine, client_name()));