From 23a31becacee9da11ebe4dff4a3146e19c95a5be Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sun, 4 Jul 2010 20:45:43 +0200 Subject: s3: Remove unused msg_flags from connections.tdb This breaks rolling code upgrade! --- source3/smbd/connection.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'source3/smbd/connection.c') diff --git a/source3/smbd/connection.c b/source3/smbd/connection.c index fe1fcdbdb8..e2d15f1ccd 100644 --- a/source3/smbd/connection.c +++ b/source3/smbd/connection.c @@ -120,8 +120,7 @@ int count_current_connections( const char *sharename, bool clear ) Claim an entry in the connections database. ****************************************************************************/ -bool claim_connection(connection_struct *conn, const char *name, - uint32 msg_flags) +bool claim_connection(connection_struct *conn, const char *name) { struct db_record *rec; struct connections_data crec; @@ -148,7 +147,6 @@ bool claim_connection(connection_struct *conn, const char *name, sizeof(crec.servicename)); } crec.start = time(NULL); - crec.bcast_msg_flags = msg_flags; strlcpy(crec.machine,get_remote_machine_name(),sizeof(crec.machine)); strlcpy(crec.addr,conn?conn->client_address: -- cgit