diff options
author | Andrew Tridgell <tridge@samba.org> | 1996-08-13 08:57:55 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 1996-08-13 08:57:55 +0000 |
commit | aa6f8b04d125b5bc00f267abf72b800228aabf7d (patch) | |
tree | 9d649627d1930e869025642b4bec2b08fb814b52 /source/namepacket.c | |
parent | fe0f5d44e20599679d392eeda34a58769378fbbf (diff) | |
download | samba-aa6f8b04d125b5bc00f267abf72b800228aabf7d.tar.gz samba-aa6f8b04d125b5bc00f267abf72b800228aabf7d.tar.xz samba-aa6f8b04d125b5bc00f267abf72b800228aabf7d.zip |
- sequent-ptx support from bressler@iftccu.ca.boeing.com (Rick
Bressler)
- machten support from Trevor Strohman (trev@figment.tenon.com)
- added qinfo command to client as part of drag-and-drop printer
support for win95 from David Chappell <chappell@mouse.cc.trincoll.edu>
He also added the "printer driver" option
- use sigblock() on more systems and use sigsetmask(0) instead of
sigunblock() as its more portable. This beats a problem with zombies
on heavilily loaded systems.
- added internals.doc written by David Chappell into the source tree
- get rid of PRINT_COMMAND options from local.h as they are no longer
relevent
- new kanji code from Fujita
- don't set the recursion_available flag on queries in nmbd
- fix a potential bug with pointer subtraction in printing.c
- got rid of error_count code as the real fix (the EOF problem) is now
in
Diffstat (limited to 'source/namepacket.c')
-rw-r--r-- | source/namepacket.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/namepacket.c b/source/namepacket.c index acedbc01511..a752ef5dfae 100644 --- a/source/namepacket.c +++ b/source/namepacket.c @@ -125,7 +125,7 @@ void initiate_netbios_packet(uint16 *id, nmb->header.response = False; nmb->header.nm_flags.bcast = bcast; - nmb->header.nm_flags.recursion_available = CanRecurse; + nmb->header.nm_flags.recursion_available = False; nmb->header.nm_flags.recursion_desired = recurse; nmb->header.nm_flags.trunc = False; nmb->header.nm_flags.authoritative = False; |