Lines Matching refs:error
70 int error, err2, opt;
75 error = smb_ctx_alloc(&ctx);
76 if (error)
77 return (error);
79 error = smb_ctx_scan_argv(ctx, argc, argv,
81 if (error)
82 return (error);
84 error = smb_ctx_readrc(ctx);
85 if (error)
86 return (error);
91 error = smb_ctx_opt(ctx, opt, optarg);
92 if (error)
93 return (error);
102 error = smb_ctx_resolve(ctx);
103 if (error)
104 return (error);
112 error = smb_ctx_get_ssn(ctx);
113 if (error == EAUTH) {
118 if (error) {
120 error, ctx->ct_fullserver);
121 return (error);
124 error = smb_ctx_get_tree(ctx);
125 if (error) {
127 error, ctx->ct_fullserver, ctx->ct_origshare);
128 return (error);
135 error = enum_shares(ctx);
136 if (error)
137 return (error);
165 int error, entries, total;
171 error = smb_netshareenum(ctx, &entries, &total, &share_info);
172 if (error) {
174 error, ctx->ct_fullserver);
175 return (error);