mirror of
https://github.com/samba-team/samba.git
synced 2025-01-08 21:18:16 +03:00
examples: Use lpcfg_set_cmdline()
Signed-off-by: Pavel Kalugin <pkalugin@inno.tech> Reviewed-by: Andreas Schneider <asn@samba.org>
This commit is contained in:
parent
c291ab2a03
commit
b9a73ff61b
@ -21,6 +21,7 @@
|
||||
#include "source3/include/includes.h"
|
||||
#include "popt.h"
|
||||
#include "lib/cmdline/cmdline.h"
|
||||
#include "lib/param/param.h"
|
||||
#include "client.h"
|
||||
#include "libsmb/proto.h"
|
||||
#include "clifuse.h"
|
||||
@ -51,6 +52,7 @@ int main(int argc, char *argv[])
|
||||
{
|
||||
const char **argv_const = discard_const_p(const char *, argv);
|
||||
TALLOC_CTX *frame = talloc_stackframe();
|
||||
struct loadparm_context *lp_ctx = NULL;
|
||||
poptContext pc;
|
||||
int opt, ret;
|
||||
int port = 0;
|
||||
@ -78,8 +80,9 @@ int main(int argc, char *argv[])
|
||||
TALLOC_FREE(frame);
|
||||
exit(1);
|
||||
}
|
||||
lp_set_cmdline("client min protocol", "SMB2");
|
||||
lp_set_cmdline("client max protocol", "SMB3_11");
|
||||
lp_ctx = samba_cmdline_get_lp_ctx();
|
||||
lpcfg_set_cmdline(lp_ctx, "client min protocol", "SMB2");
|
||||
lpcfg_set_cmdline(lp_ctx, "client max protocol", "SMB3_11");
|
||||
|
||||
pc = samba_popt_get_context(getprogname(),
|
||||
argc,
|
||||
|
Loading…
Reference in New Issue
Block a user