diff options
author | Jeremy Allison <jra@samba.org> | 1998-02-20 19:48:01 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 1998-02-20 19:48:01 +0000 |
commit | c16d4aec00230983973be3b827d1209f5db65d9c (patch) | |
tree | 40c9ce5caeef8211ef2381dee11ac8d1200ecc08 /source3/include | |
parent | c57e8d404d8ab32fe08e9f85d5326160671b56d5 (diff) | |
download | samba-c16d4aec00230983973be3b827d1209f5db65d9c.tar.gz samba-c16d4aec00230983973be3b827d1209f5db65d9c.tar.bz2 samba-c16d4aec00230983973be3b827d1209f5db65d9c.zip |
nmbd_packets.c: nmbd_subnetdb.c: Patch from Andrey Alekseyev <fetch@muffin.arcadia.spb.ru>
to fix the fact that retransmit_or_expire_response_records() wasn't looking
at the WINS subnet.
server.c: Patch from jkf@soton.ac.uk to add %p (NIS server path) substitution.
smbpass.c: Fix to stop parsing failing on non-valid lines.
trans2.c: Fix for volume serial number code.
util.c: Patch from jkf@soton.ac.uk to add %p (NIS server path) substitution.
Fix for warnings under RH5. gcc 2.8.
Jeremy.
(This used to be commit e58ab3bbe6e939ba678ad5482e58e0191c8dcbcb)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 97017e77b0..a5a7ceec69 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -743,6 +743,7 @@ void write_browse_list(time_t t, BOOL force_write); BOOL create_subnets(); BOOL we_are_a_wins_client(); struct subnet_record *get_next_subnet_maybe_unicast(struct subnet_record *subrec); +struct subnet_record *get_next_subnet_maybe_unicast_or_wins_server(struct subnet_record *subrec); /*The following definitions come from nmbd_winsproxy.c */ @@ -1485,6 +1486,7 @@ void reset_globals_after_fork(); char *client_name(void); char *client_addr(void); char *automount_server(char *user_name); +char *automount_path(char *user_name); void standard_sub_basic(char *str); BOOL same_net(struct in_addr ip1,struct in_addr ip2,struct in_addr mask); int PutUniCode(char *dst,char *src); |