Changeset 989 for vendor/current/source3/utils/smbcquotas.c
- Timestamp:
- Nov 25, 2016, 8:04:54 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
vendor/current/source3/utils/smbcquotas.c
r988 r989 569 569 struct cli_state *cli; 570 570 bool fix_user = False; 571 bool ok; 571 572 SMB_NTQUOTA_STRUCT qt; 572 573 TALLOC_CTX *frame = talloc_stackframe(); … … 602 603 fault_setup(); 603 604 604 lp_load_global(get_dyn_CONFIGFILE());605 load_interfaces();606 607 605 smbcquotas_auth_info = user_auth_info_init(frame); 608 606 if (smbcquotas_auth_info == NULL) { … … 695 693 popt_burn_cmdline_password(argc, argv); 696 694 695 ok = lp_load_global(get_dyn_CONFIGFILE()); 696 if (!ok) { 697 DBG_ERR("ERROR: Loading config file %s - " 698 "run testparm to debug it\n", 699 get_dyn_CONFIGFILE()); 700 exit(EXIT_PARSE_ERROR); 701 } 702 703 /* We must load interfaces after we load the smb.conf */ 704 load_interfaces(); 705 697 706 string_replace(path, '/', '\\'); 698 707
Note:
See TracChangeset
for help on using the changeset viewer.