diff options
author | Samba Release Account <samba-bugs@samba.org> | 1997-06-03 17:14:48 +0000 |
---|---|---|
committer | Samba Release Account <samba-bugs@samba.org> | 1997-06-03 17:14:48 +0000 |
commit | b40d3bede60c8e040ee30c72d605a4950e1a8c8b (patch) | |
tree | 143c49667255b8af563c9715b7e19c88a032a997 /source/nameservreply.c | |
parent | 65f82fb153ef8b007d3f800a6e398545907ae95c (diff) | |
download | samba-b40d3bede60c8e040ee30c72d605a4950e1a8c8b.tar.gz samba-b40d3bede60c8e040ee30c72d605a4950e1a8c8b.tar.xz samba-b40d3bede60c8e040ee30c72d605a4950e1a8c8b.zip |
includes.h: Added USE_SETSID for SGI.
nameelect.c: Added debug 0 comments so you know when you have become a master/domain master.
nameservreply.c:Stopped SELF names from being remotely released. This still needs work.
nmbsync.c: Added debug 0 comments so you know when a sync is being done.
Jeremy jallison@whistle.com
Diffstat (limited to 'source/nameservreply.c')
-rw-r--r-- | source/nameservreply.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/nameservreply.c b/source/nameservreply.c index db517dff825..9e46b803039 100644 --- a/source/nameservreply.c +++ b/source/nameservreply.c @@ -135,10 +135,10 @@ void reply_name_release(struct packet_struct *p) /* XXXX under what conditions should we reject the removal?? */ /* For now - remove if the names match and the group bit matches. */ - if (n && (NAME_GROUP(n->ip_flgs[0].nb_flags) == NAME_GROUP(nb_flags))) + if (n && (n->source != SELF) && (NAME_GROUP(n->ip_flgs[0].nb_flags) == NAME_GROUP(nb_flags))) { success = True; - + DEBUG(5, ("reply_name_release: Removing name %s on subnet %s\n", namestr(&nmb->question.question_name), inet_ntoa(d->bcast_ip))); remove_name(d,n); |