summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSamba Release Account <samba-bugs@samba.org>1997-06-03 17:14:48 +0000
committerSamba Release Account <samba-bugs@samba.org>1997-06-03 17:14:48 +0000
commitb40d3bede60c8e040ee30c72d605a4950e1a8c8b (patch)
tree143c49667255b8af563c9715b7e19c88a032a997
parent65f82fb153ef8b007d3f800a6e398545907ae95c (diff)
downloadsamba-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
-rw-r--r--source/include/includes.h2
-rw-r--r--source/nameelect.c6
-rw-r--r--source/nameservreply.c4
-rw-r--r--source/nmbsync.c2
4 files changed, 10 insertions, 4 deletions
diff --git a/source/include/includes.h b/source/include/includes.h
index 265e838be0d..7403fc4b641 100644
--- a/source/include/includes.h
+++ b/source/include/includes.h
@@ -341,6 +341,7 @@ char *getwd(char *);
#define STATFS4
#define USE_WAITPID
#define USE_DIRECT
+#define USE_SETSID
#endif
#ifdef SGI5
@@ -358,6 +359,7 @@ char *getwd(char *);
#define SIGNAL_CAST (void (*)())
#define USE_STATVFS
#define USE_WAITPID
+#define USE_SETSID
#endif
diff --git a/source/nameelect.c b/source/nameelect.c
index 752e27fb070..258ee98931e 100644
--- a/source/nameelect.c
+++ b/source/nameelect.c
@@ -402,6 +402,10 @@ on subnet %s\n", work->work_group, inet_ntoa(d->bcast_ip)));
/* Reset the announce master timer so that we do an announce as soon as possible
now we are a master. */
reset_announce_timer();
+
+ DEBUG(0,("Samba is now a local master browser for workgroup %s on subnet %s\n",
+ work->work_group, inet_ntoa(d->bcast_ip)));
+
break;
}
@@ -492,7 +496,7 @@ void become_domain_master(struct subnet_record *d, struct work_record *work)
add_server_entry(d,work,myname,work->ServerType,0,
lp_serverstring(),True);
- DEBUG(4,("Samba is now a domain master browser for workgroup %s on subnet %s\n",
+ DEBUG(0,("Samba is now a domain master browser for workgroup %s on subnet %s\n",
work->work_group, inet_ntoa(d->bcast_ip)));
break;
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);
diff --git a/source/nmbsync.c b/source/nmbsync.c
index 7c23c64a96a..7f5d608998a 100644
--- a/source/nmbsync.c
+++ b/source/nmbsync.c
@@ -156,7 +156,7 @@ void sync_browse_lists(struct subnet_record *d, struct work_record *work,
got_pass = True;
- DEBUG(4,("sync browse lists with %s for %s %s\n",
+ DEBUG(0,("sync_browse_lists: Sync browse lists with %s for %s %s\n",
work->work_group, name, inet_ntoa(ip)));
strcpy(workgroup,work->work_group);