1
0
mirror of https://github.com/samba-team/samba.git synced 2025-12-05 12:23:50 +03:00

Missed a few 'deprecated' markers

This commit is contained in:
Derrell Lipman
2008-03-03 18:25:49 -05:00
parent a67f96fbe9
commit 76ba37ac46
2 changed files with 3 additions and 3 deletions

View File

@@ -122,7 +122,7 @@ main(int argc, char * argv[])
/* ... then set the option to do so */ /* ... then set the option to do so */
smbc_setOptionDebugToStderr(context, 1); smbc_setOptionDebugToStderr(context, 1);
} }
/* Initialize the context using the previously specified options */ /* Initialize the context using the previously specified options */
if (!smbc_init_context(context)) { if (!smbc_init_context(context)) {
smbc_free_context(context, 0); smbc_free_context(context, 0);

View File

@@ -2767,7 +2767,7 @@ struct _SMBCCTX
* DEPRECATED: * DEPRECATED:
* Use smbc_getServerCacheData(), smbc_setServerCacheData() * Use smbc_getServerCacheData(), smbc_setServerCacheData()
*/ */
void * reserved; /* space where server_cache_data used to be */ void * reserved _DEPRECATED_;
/* /*
* Very old configuration options. * Very old configuration options.
@@ -2796,7 +2796,7 @@ struct _SMBCCTX
int browse_max_lmb_count _DEPRECATED_; int browse_max_lmb_count _DEPRECATED_;
int urlencode_readdir_entries _DEPRECATED_; int urlencode_readdir_entries _DEPRECATED_;
int one_share_per_server _DEPRECATED_; int one_share_per_server _DEPRECATED_;
} options; } options _DEPRECATED_;
/** INTERNAL DATA /** INTERNAL DATA
* do _NOT_ touch this from your program ! * do _NOT_ touch this from your program !