Changeset 751 for trunk/server/source3/winbindd/winbindd.c
- Timestamp:
- Nov 29, 2012, 1:59:04 PM (13 years ago)
- File:
-
- 1 edited
-
trunk/server/source3/winbindd/winbindd.c (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/server/source3/winbindd/winbindd.c
r745 r751 66 66 67 67 if (lp_loaded()) { 68 c onst char *fname = lp_configfile();68 char *fname = lp_configfile(); 69 69 70 70 if (file_exist(fname) && !strcsequal(fname,get_dyn_CONFIGFILE())) { 71 71 set_dyn_CONFIGFILE(fname); 72 72 } 73 73 74 } 74 75 … … 588 589 state->cmd_name = "unknown request"; 589 590 state->recv_fn = NULL; 591 590 592 591 593 /* Process command */ … … 889 891 890 892 static bool client_is_idle(struct winbindd_cli_state *state) { 891 return (state->response == NULL && 893 return (state->request == NULL && 894 state->response == NULL && 892 895 !state->pwent_state && !state->grent_state); 893 896 } … … 1303 1306 } 1304 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1305 1317 if (is_daemon && interactive) { 1306 1318 d_fprintf(stderr,"\nERROR: " … … 1341 1353 exit(1); 1342 1354 } 1355 1356 1357 1358 1359 1343 1360 1344 1361 /* Initialise messaging system */
Note:
See TracChangeset
for help on using the changeset viewer.
