diff options
author | Samba Release Account <samba-bugs@samba.org> | 1997-05-30 20:40:48 +0000 |
---|---|---|
committer | Samba Release Account <samba-bugs@samba.org> | 1997-05-30 20:40:48 +0000 |
commit | 3ab97ebe6db1a5a4a0573c7c8482c94876bbce9a (patch) | |
tree | 94beff79798a1b4a0c554610fe5ae5e5fa882f63 /source3/include | |
parent | f17269211466c790ec0b39848e24e540a7b0bd21 (diff) | |
download | samba-3ab97ebe6db1a5a4a0573c7c8482c94876bbce9a.tar.gz samba-3ab97ebe6db1a5a4a0573c7c8482c94876bbce9a.tar.bz2 samba-3ab97ebe6db1a5a4a0573c7c8482c94876bbce9a.zip |
charcnv.c: Fixed silly bugs detected on IRIX.
client.c: Fixed silly bugs detected on IRIX.
namedbname.c: Stopped 1d names from being registered in WINS db.
namedbsubnet.c: Only register 1e names on broadcast subnet.
nameelect.c: Changed add_my_name entries. Forced host announces if we
have less than 10 servers listed. Fixed registering 1b
domain name issues.
namepacket.c: Added error message when dgram discarded.
nameserv.c: Added notion of 'direct' names that are not registered on
the network. Needed to get around bugs in earlier nmbd
handling of DOMAIN(1b) names.
nameservreply.c:Tidied up debug message.
nameservresp.c: Added response_name_query_domain() code. Deals with
re-registering DOMAIN(1b) name.
nmbd.c: Fixed silly bugs detected on IRIX.
nmblib.c: Added paranoia debugs.
proto.h: Updated remove_name_entry(), add_my_name_entry().
server.c: Fixed silly bugs detected on IRIX.
trans2.c: Fixed silly bugs detected on IRIX.
uid.c: Fixed silly bugs detected on IRIX.
version.h: Updated to alpha3.
Jeremy (jallison@whistle.com).
(This used to be commit f08222bd8b86a061c52d22015f946a4737eb47fd)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 4 | ||||
-rw-r--r-- | source3/include/version.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 04202dd88c..e6d39c3a3f 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -481,8 +481,8 @@ struct response_record *queue_netbios_packet(struct subnet_record *d, /*The following definitions come from nameserv.c */ -void remove_name_entry(struct subnet_record *d, char *name,int type); -void add_my_name_entry(struct subnet_record *d,char *name,int type,int nb_flags); +void remove_name_entry(struct subnet_record *d, char *name,int type, BOOL direct); +void add_my_name_entry(struct subnet_record *d,char *name,int type,int nb_flags, BOOL direct); void add_domain_names(time_t t); void add_my_names(void); void remove_my_names(); diff --git a/source3/include/version.h b/source3/include/version.h index 2f7596f41d..37e26dd65e 100644 --- a/source3/include/version.h +++ b/source3/include/version.h @@ -1 +1 @@ -#define VERSION "1.9.17alpha2" +#define VERSION "1.9.17alpha3" |