1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-22 22:04:08 +03:00

Remove use of deprecated function

(This used to be commit 93580bce833453ba512ee436d6dfdbdcd2c53777)
This commit is contained in:
Derrell Lipman 2008-03-02 16:21:48 -05:00
parent bf950ea758
commit 8a05c0a884
5 changed files with 8 additions and 8 deletions

View File

@ -176,9 +176,9 @@ static void do_init(StartupType startupType)
smbc_setDebug(smbw_ctx, debug_level);
smbc_setFunctionAuthData(smbw_ctx, get_auth_data_fn);
smbc_option_set(smbw_ctx, "browse_max_lmb_count", 0);
smbc_option_set(smbw_ctx, "urlencode_readdir_entries", 1);
smbc_option_set(smbw_ctx, "one_share_per_server", 1);
smbc_setOptionBrowseMaxLmbCount(smbw_ctx, 0);
smbc_setOptionUrlEncodeReaddirEntries(smbw_ctx, 1);
smbc_setOptionOneSharePerServer(smbw_ctx, 1);
if (smbc_init_context(smbw_ctx) == NULL) {
fprintf(stderr, "Could not initialize context.\n");

View File

@ -143,7 +143,7 @@ int main(int argc, const char *argv[])
if (full_time_names) {
SMBCCTX *context = smbc_set_context(NULL);
smbc_option_set(context, "full_time_names", 1);
smbc_setOptionFullTimeNames(context, 1);
}
/* Perform requested action */

View File

@ -39,7 +39,7 @@ int main(int argc, const char *argv[])
}
SMBCCTX *context = smbc_set_context(NULL);
smbc_option_set(context, "full_time_names", 1);
smbc_setOptionFullTimeNames(context, 1);
the_acl = strdup("system.nt_sec_desc.*");
ret = smbc_getxattr(argv[1], the_acl, value, sizeof(value));

View File

@ -28,7 +28,7 @@ int main(int argc, char * argv[])
smbc_init(get_auth_data_fn, debug);
context = smbc_set_context(NULL);
smbc_option_set(context, "full_time_names", 1);
smbc_setOptionFullTimeNames(context, 1);
for (;;)
{

View File

@ -120,7 +120,7 @@ main(int argc, char * argv[])
/* If we've been asked to log to stderr instead of stdout, ... */
if (debug_stderr) {
/* ... then set the option to do so */
smbc_option_set(context, "debug_to_stderr", 1);
smbc_setOptionDebugToStderr(context, 1);
}
/* Initialize the context using the previously specified options */
@ -196,7 +196,7 @@ get_auth_data_with_context_fn(SMBCCTX * context,
{
printf("Authenticating with context 0x%lx", context);
if (context != NULL) {
char *user_data = smbc_option_get(context, "user_data");
char *user_data = smbc_getOptionUserData(context);
printf(" with user data %s", user_data);
}
printf("\n");