diff options
author | Gerald Carter <jerry@samba.org> | 2004-03-22 22:49:40 +0000 |
---|---|---|
committer | Gerald Carter <jerry@samba.org> | 2004-03-22 22:49:40 +0000 |
commit | 14dd75d181293fa5335184d2d836834a42edcbb4 (patch) | |
tree | 2c26a8a1dc66ac9c755b08937c7d64954289a544 /source3/include | |
parent | f58e6a997750c16e0c1ffccabbbf69469eb280c2 (diff) | |
download | samba-14dd75d181293fa5335184d2d836834a42edcbb4.tar.gz samba-14dd75d181293fa5335184d2d836834a42edcbb4.tar.bz2 samba-14dd75d181293fa5335184d2d836834a42edcbb4.zip |
bug 1195: add flag to ADS_STRUCT so we know who owns the main structure's memory (not the members though)
(This used to be commit 4449e0e251190b741f51348819669453f0758f36)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/ads.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/include/ads.h b/source3/include/ads.h index 65a5ade556..5ae577efe7 100644 --- a/source3/include/ads.h +++ b/source3/include/ads.h @@ -10,6 +10,8 @@ typedef struct { time_t last_attempt; /* last attempt to reconnect */ int ldap_port; + int is_mine; /* do I own this structure's memory? */ + /* info needed to find the server */ struct { char *realm; |