diff options
author | Eloy Paris <peloy@samba.org> | 2003-06-01 07:12:51 +0000 |
---|---|---|
committer | Eloy Paris <peloy@samba.org> | 2003-06-01 07:12:51 +0000 |
commit | 57be8ec8ac6158a37bfe78e97e8f05cd3a3bf54d (patch) | |
tree | 38a531bc4190daee2f461a6a51f1f5e6abe835cf /packaging/Debian/debian/patches/nmbd-signalling.patch | |
parent | f6b7bb44a61583a4743767d7ea5e3de5127e0176 (diff) | |
download | samba-57be8ec8ac6158a37bfe78e97e8f05cd3a3bf54d.tar.gz samba-57be8ec8ac6158a37bfe78e97e8f05cd3a3bf54d.tar.bz2 samba-57be8ec8ac6158a37bfe78e97e8f05cd3a3bf54d.zip |
Bringing packaging/Debian/* to a more recent state.
(This used to be commit cd7494a19608f2b4a63b9c654dd8e0a0fc587c39)
Diffstat (limited to 'packaging/Debian/debian/patches/nmbd-signalling.patch')
-rw-r--r-- | packaging/Debian/debian/patches/nmbd-signalling.patch | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/packaging/Debian/debian/patches/nmbd-signalling.patch b/packaging/Debian/debian/patches/nmbd-signalling.patch new file mode 100644 index 0000000000..c34f7e75fb --- /dev/null +++ b/packaging/Debian/debian/patches/nmbd-signalling.patch @@ -0,0 +1,20 @@ +diff -uNr samba-2.999+3.0.alpha21.orig/source/nmbd/nmbd_subnetdb.c samba-2.999+3.0.alpha21/source/nmbd/nmbd_subnetdb.c +--- samba-2.999+3.0.alpha21.orig/source/nmbd/nmbd_subnetdb.c 2002-11-26 20:54:19.000000000 -0600 ++++ samba-2.999+3.0.alpha21/source/nmbd/nmbd_subnetdb.c 2002-12-16 23:34:13.000000000 -0600 +@@ -230,12 +230,16 @@ + extern struct in_addr loopback_ip; + + if(num_interfaces == 0) { ++ void (*old_handler)(int); ++ + DEBUG(0,("create_subnets: No local interfaces !\n")); + DEBUG(0,("create_subnets: Waiting for an interface to appear ...\n")); ++ old_handler = CatchSignal( SIGTERM, SIGNAL_CAST SIG_DFL ); + while (iface_count() == 0) { + sleep(5); + load_interfaces(); + } ++ CatchSignal( SIGTERM, SIGNAL_CAST old_handler ); + } + + num_interfaces = iface_count(); |