diff options
author | Tim Potter <tpot@samba.org> | 2002-08-01 23:14:48 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2002-08-01 23:14:48 +0000 |
commit | dcb4aec62757f63a252e0116b874d712681f85fd (patch) | |
tree | b0a7acbef273a9478c01f6f73c28191e76bca067 | |
parent | a4e3bdbbeec2071fc1a629db6426e3fd4951f7ce (diff) | |
download | samba-dcb4aec62757f63a252e0116b874d712681f85fd.tar.gz samba-dcb4aec62757f63a252e0116b874d712681f85fd.tar.bz2 samba-dcb4aec62757f63a252e0116b874d712681f85fd.zip |
Fixed compiler warning.
(This used to be commit 81322f4d63095d828be7983eb4b47775abe8d33f)
-rw-r--r-- | source3/smbd/conn.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/conn.c b/source3/smbd/conn.c index 3b6dd61e1e..d70e50f899 100644 --- a/source3/smbd/conn.c +++ b/source3/smbd/conn.c @@ -164,7 +164,7 @@ BOOL conn_idle_all(time_t t, int deadtime) void conn_free(connection_struct *conn) { smb_vfs_handle_struct *handle, *thandle; - void (*done_fptr)(connection_struct *conn); + void (*done_fptr)(connection_struct *the_conn); /* Free vfs_connection_struct */ handle = conn->vfs_private; |