diff options
author | Andrew Tridgell <tridge@samba.org> | 1998-08-14 17:38:29 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 1998-08-14 17:38:29 +0000 |
commit | c7ee025ead4a85b6fa44a832047b878451845fb6 (patch) | |
tree | b57a953262c85164d9cf451756555043935ce6ee /source/nmbd/nmbd.c | |
parent | 6f9228b01131d0fad464971297393ccb8a15703f (diff) | |
download | samba-c7ee025ead4a85b6fa44a832047b878451845fb6.tar.gz samba-c7ee025ead4a85b6fa44a832047b878451845fb6.tar.xz samba-c7ee025ead4a85b6fa44a832047b878451845fb6.zip |
this is the bug change to using connection_struct* instead of cnum.
Connections[] is now a local array in server.c
I might have broken something with this change. In particular the
oplock code is suspect and some .dll files aren't being oplocked when
I expected them to be. I'll look at it after I've got some sleep.
Diffstat (limited to 'source/nmbd/nmbd.c')
-rw-r--r-- | source/nmbd/nmbd.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source/nmbd/nmbd.c b/source/nmbd/nmbd.c index 9df30adc8c8..24f4951612c 100644 --- a/source/nmbd/nmbd.c +++ b/source/nmbd/nmbd.c @@ -153,7 +153,8 @@ static BOOL dump_core(void) #endif - DEBUG( 0, ( "Dumping core in %s\n",dname ) ); + DEBUG(0,("Dumping core in %s\n",dname)); + abort(); return( True ); } /* dump_core */ #endif |