diff options
Diffstat (limited to 'source3/nameservreply.c')
-rw-r--r-- | source3/nameservreply.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/source3/nameservreply.c b/source3/nameservreply.c index a4888b04d4..9f7b3da70b 100644 --- a/source3/nameservreply.c +++ b/source3/nameservreply.c @@ -135,10 +135,13 @@ void reply_name_release(struct packet_struct *p) search, ip); /* XXXX under what conditions should we reject the removal?? */ - if (n && n->ip_flgs[0].nb_flags == nb_flags) + /* 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))) { 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); n = NULL; } |