From 045543b661c1ee2c1dac72203e634b9a08568081 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sat, 25 Sep 2004 08:16:16 +0000 Subject: r2618: before we had refererence counts in talloc I added a hack in the server side request structure to prevent a structing being freed in some circumstances. This change replaces this with the much more robust mechanism of talloc_increase_ref_count(). (This used to be commit 3f7741f178b359f81cc98ef18cd69bf976123e9f) --- source4/include/smb.h | 1 - 1 file changed, 1 deletion(-) (limited to 'source4/include') diff --git a/source4/include/smb.h b/source4/include/smb.h index 16af58db7d..46b2dd03ca 100644 --- a/source4/include/smb.h +++ b/source4/include/smb.h @@ -607,7 +607,6 @@ typedef struct nt_user_token { /* a set of flags to control handling of request structures */ -#define REQ_CONTROL_PROTECTED (1<<0) /* don't destroy this request */ #define REQ_CONTROL_LARGE (1<<1) /* allow replies larger than max_xmit */ #define REQ_CONTROL_ASYNC (1<<2) /* the backend will answer this one later */ -- cgit