diff options
author | Samba Release Account <samba-bugs@samba.org> | 1996-08-24 01:41:46 +0000 |
---|---|---|
committer | Samba Release Account <samba-bugs@samba.org> | 1996-08-24 01:41:46 +0000 |
commit | 9ad5a3fe36ac2b32bcb7a50c608ec586629f2125 (patch) | |
tree | 133871efd2c12d360a4ff585f9ab96f7db91c5ea /source3/namedbresp.c | |
parent | 8c41ad5614f4b3e6218cc7a3a21526122b202709 (diff) | |
download | samba-9ad5a3fe36ac2b32bcb7a50c608ec586629f2125.tar.gz samba-9ad5a3fe36ac2b32bcb7a50c608ec586629f2125.tar.xz samba-9ad5a3fe36ac2b32bcb7a50c608ec586629f2125.zip |
removed all of lukes recent changes. I need to do a p2 release but
can't test the multi group changes.
I also found that some of lukes changes wiped out some recent bug
fixes. Is your CVS tree ok luke?
(This used to be commit 8b7fe224bce64803d55ae279fa61ef3ebbbb0241)
Diffstat (limited to 'source3/namedbresp.c')
-rw-r--r-- | source3/namedbresp.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/source3/namedbresp.c b/source3/namedbresp.c index 10a9523b8da..d89bfe8ae84 100644 --- a/source3/namedbresp.c +++ b/source3/namedbresp.c @@ -92,8 +92,8 @@ void remove_response_record(struct subnet_record *d, create a name query response record **************************************************************************/ struct response_record *make_response_queue_record(enum state_type state, - int id,uint16 fd, int quest_type, - int token, char *name,int type, int nb_flags, time_t ttl, + int id,uint16 fd, + int quest_type, char *name,int type, int nb_flags, time_t ttl, int server_type, char *my_name, char *my_comment, BOOL bcast,BOOL recurse, struct in_addr send_ip, struct in_addr reply_to_ip) @@ -109,16 +109,14 @@ struct response_record *make_response_queue_record(enum state_type state, n->state = state; n->fd = fd; n->quest_type = quest_type; - - n->token = token; make_nmb_name(&n->name, name, type, scope); + n->nb_flags = nb_flags; n->ttl = ttl; n->server_type = server_type; n->bcast = bcast; n->recurse = recurse; - n->reply.nb_flags = nb_flags; - n->reply.ip = reply_to_ip; n->send_ip = send_ip; + n->reply_to_ip = reply_to_ip; StrnCpy(my_name , n->my_name , sizeof(n->my_name )-1); StrnCpy(my_comment, n->my_comment, sizeof(n->my_comment)-1); |