diff options
author | Christopher R. Hertel <crh@samba.org> | 1998-06-09 01:56:18 +0000 |
---|---|---|
committer | Christopher R. Hertel <crh@samba.org> | 1998-06-09 01:56:18 +0000 |
commit | 96bc4042779570e6239b2626888ea0ca9be17391 (patch) | |
tree | a09e276a5dda748eda4af3e97d46149da6d92c6e /source3/nmbd/nmbd_lmhosts.c | |
parent | ae260b9688676afc712fec0890b3cd79dfb53331 (diff) | |
download | samba-96bc4042779570e6239b2626888ea0ca9be17391.tar.gz |
This is a first step toward moving long namelists into a database. I
split the name_record structure into pieces. The goal is that the key
(the name) be separate from the data associated with the key. Databases
such as gdbm store information in [key,content] pairs.
There is no functional change in with this update. It's just a step in
the direction that Jeremy and I have been discussing.
Chris -)-----
(This used to be commit e420a4bd7d368a0e910893400fb7b46ab8694a08)
Diffstat (limited to 'source3/nmbd/nmbd_lmhosts.c')
-rw-r--r-- | source3/nmbd/nmbd_lmhosts.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/nmbd/nmbd_lmhosts.c b/source3/nmbd/nmbd_lmhosts.c index 206c2367b12..f4d520b1cfc 100644 --- a/source3/nmbd/nmbd_lmhosts.c +++ b/source3/nmbd/nmbd_lmhosts.c @@ -93,7 +93,7 @@ BOOL find_name_in_lmhosts(struct nmb_name *nmbname, struct name_record **namerec FIND_ANY_NAME))==NULL) return False; - if(!NAME_IS_ACTIVE(namerec) || (namerec->source != LMHOSTS_NAME)) + if(!NAME_IS_ACTIVE(namerec) || (namerec->data.source != LMHOSTS_NAME)) return False; *namerecp = namerec; |