Changeset 158 for branches/samba-3.0/source/nmbd
- Timestamp:
- Sep 30, 2008, 7:14:08 AM (17 years ago)
- Location:
- branches/samba-3.0/source/nmbd
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/samba-3.0/source/nmbd/nmbd.c
r134 r158 249 249 BlockSignals(false, SIGTERM); 250 250 251 while (iface_count () == 0 && !got_sig_term) {251 while (iface_count_nl() == 0 && !got_sig_term) { 252 252 sleep(5); 253 253 load_interfaces(); -
branches/samba-3.0/source/nmbd/nmbd_subnetdb.c
r134 r158 187 187 try_interfaces_again: 188 188 189 if (iface_count () == 0) {190 DEBUG(0,("create_subnets: No local interfaces !\n"));189 if (iface_count_nl() == 0) { 190 DEBUG(0,("create_subnets: No non-loopback local interfaces !\n")); 191 191 DEBUG(0,("create_subnets: Waiting for an interface to appear ...\n")); 192 192 } 193 193 194 while (iface_count () == 0) {194 while (iface_count_nl() == 0) { 195 195 void (*saved_handler)(int); 196 196
Note:
See TracChangeset
for help on using the changeset viewer.