1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-13 13:18:06 +03:00

Merge of const fixes from HEAD.

(This used to be commit a847ebd827)
This commit is contained in:
Tim Potter 2003-04-28 05:18:30 +00:00
parent ee007fc7b8
commit 4ea3cd2629
3 changed files with 3 additions and 3 deletions

View File

@ -464,7 +464,7 @@ static BOOL check_auth_crap(void)
and valid authentication types
*/
static DATA_BLOB get_challenge(void)
static const DATA_BLOB get_challenge(void)
{
static DATA_BLOB chal;
if (opt_challenge.length)

View File

@ -674,7 +674,7 @@ int main(int argc, char **argv)
poptContext pc;
int opt;
static struct poptOption wbinfo_options[] = {
struct poptOption wbinfo_options[] = {
{ "timeout", 't', POPT_ARG_INT, &timeout, 't',
"Set timeout value in seconds", "TIMEOUT" },

View File

@ -393,7 +393,7 @@ static struct cli_state *connect_one(const char *share)
pstring set_str = {0};
enum SMB_QUOTA_TYPE qtype;
int cmd = 0;
static BOOL test_args = False;
BOOL test_args = False;
struct cli_state *cli;
BOOL fix_user = False;
SMB_NTQUOTA_STRUCT qt;