diff options
author | Volker Lendecke <vl@samba.org> | 2008-05-20 23:08:42 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2008-05-20 23:08:42 +0200 |
commit | c38a1e06b5ada7325ba0fcebd7254475ae84a4de (patch) | |
tree | 5ae4cc85dbd41cc1d43535d027c183f40c3d46e5 /source3/smbd | |
parent | e2d8b0a7923f52cf2be1c3a14f6390aea9c06fe7 (diff) | |
download | samba-c38a1e06b5ada7325ba0fcebd7254475ae84a4de.tar.gz samba-c38a1e06b5ada7325ba0fcebd7254475ae84a4de.tar.bz2 samba-c38a1e06b5ada7325ba0fcebd7254475ae84a4de.zip |
Fix type error in debug message
(This used to be commit eb281532b1721ded39c39bb00c26202080dcd735)
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/sesssetup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/sesssetup.c b/source3/smbd/sesssetup.c index f6aec7dddc..041596b953 100644 --- a/source3/smbd/sesssetup.c +++ b/source3/smbd/sesssetup.c @@ -1353,7 +1353,7 @@ static int shutdown_other_smbds(struct db_record *rec, } DEBUG(0,("shutdown_other_smbds: shutting down pid %d " - "(IP %s)\n", crec->pid, ip)); + "(IP %s)\n", procid_to_pid(&crec->pid), ip)); messaging_send(smbd_messaging_context(), crec->pid, MSG_SHUTDOWN, &data_blob_null); |