diff options
author | Andrew Tridgell <tridge@samba.org> | 2000-04-10 02:44:06 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2000-04-10 02:44:06 +0000 |
commit | f4274fe897c8456df74dda92df13398dc5a2ffdc (patch) | |
tree | b2dd0471a0f5359f7682a90a48a30880088c66a3 /source3 | |
parent | aac823aca154c46264dd29510c89b8eafac361c8 (diff) | |
download | samba-f4274fe897c8456df74dda92df13398dc5a2ffdc.tar.gz samba-f4274fe897c8456df74dda92df13398dc5a2ffdc.tar.xz samba-f4274fe897c8456df74dda92df13398dc5a2ffdc.zip |
utmp compile fix from peter@cadcamlab.org
(This used to be commit c0562a02c345c3eb7d9a26b85bef454355023ba3)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/smbd/connection.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/smbd/connection.c b/source3/smbd/connection.c index 95645bfdf6a..c796fee8b57 100644 --- a/source3/smbd/connection.c +++ b/source3/smbd/connection.c @@ -329,8 +329,8 @@ static void utmp_yield(pid_t pid, const connection_struct *conn) return; } - DEBUG(2,("utmp_yield: conn: user:%s cnum:%d i:%d\n", - conn->user, conn->cnum, i)); + DEBUG(2,("utmp_yield: conn: user:%s cnum:%d\n", + conn->user, conn->cnum)); memset((char *)&u, '\0', sizeof(struct utmp)); u.ut_type = DEAD_PROCESS; |