1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00

Cleaning up the warnings from configure.developer.

Found that Jeremy had already made some of the changes.
(This used to be commit ca02d9f821)
This commit is contained in:
Shirish Kalele 2000-03-10 22:53:36 +00:00
parent d56e3425a1
commit 0307b23a31
5 changed files with 9 additions and 13 deletions

View File

@ -1,3 +1,4 @@
#!/bin/sh
export CFLAGS="-g -Wall -Wshadow -Wstrict-prototypes -Wpointer-arith -Wcast-qual -Wcast-align -DDEBUG_PASSWORD"
CFLAGS="-g -Wall -Wshadow -Wstrict-prototypes -Wpointer-arith -Wcast-qual -Wcast-align -DDEBUG_PASSWORD"
export CFLAGS
./configure $*

View File

@ -252,7 +252,7 @@ void msdfs_close(void)
void msdfs_end(void)
{
pstring fname;
/* pstring fname; */
msdfs_close();
/* pstrcpy(fname,lock_path(MSDFS_TDB));

View File

@ -251,9 +251,7 @@ typedef struct
BOOL bDebugHiresTimestamp;
BOOL bDebugPid;
BOOL bDebugUid;
#ifdef MS_DFS
BOOL bHostMSDfs;
#endif
} global;
static global Globals;
@ -1315,9 +1313,7 @@ FN_GLOBAL_BOOL(lp_nt_acl_support,&Globals.bNTAclSupport)
FN_GLOBAL_BOOL(lp_stat_cache,&Globals.bStatCache)
FN_GLOBAL_BOOL(lp_allow_trusted_domains,&Globals.bAllowTrustedDomains)
FN_GLOBAL_BOOL(lp_restrict_anonymous,&Globals.bRestrictAnonymous)
#ifdef MS_DFS
FN_GLOBAL_BOOL(lp_host_msdfs,&Globals.bHostMSDfs)
#endif
FN_GLOBAL_INTEGER(lp_os_level,&Globals.os_level)
FN_GLOBAL_INTEGER(lp_max_ttl,&Globals.max_ttl)
FN_GLOBAL_INTEGER(lp_max_wins_ttl,&Globals.max_wins_ttl)

View File

@ -301,11 +301,13 @@ BOOL reload_services(BOOL test)
ret = lp_load(servicesf,False,False,True);
#ifdef MS_DFS
/* load the dfs maps of all the services having
a dfs_map parameter
we don't want to do this in lp_load because we want just the smbd
server to load up the dfs maps into msdfds.tdb. not nmbd, swat etc*/
server to load up the dfs maps into msdfs.tdb. not nmbd, swat etc*/
load_dfsmaps();
#endif
load_printers();

View File

@ -2138,12 +2138,11 @@ static int call_trans2getdfsreferral(connection_struct *conn, char* inbuf,
BOOL NT_arch = ((ra_type == RA_WINNT) || (ra_type == RA_WIN2K));
pstring pathname;
int reply_size = 0;
char* dfs_referral = NULL;
int max_referral_level = SVAL(params,0);
#endif
DEBUG(10,("call_trans2getdfsreferral\n"));
#ifdef MS_DFS
if(!lp_host_msdfs())
return(ERROR(ERRDOS,ERRbadfunc));
@ -2163,10 +2162,8 @@ static int call_trans2getdfsreferral(connection_struct *conn, char* inbuf,
SSVAL(outbuf,smb_flg2,SVAL(outbuf,smb_flg2) | FLAGS2_UNICODE_STRINGS |
FLAGS2_DFS_PATHNAMES);
send_trans2_replies(outbuf,bufsize,0,0,*ppdata,reply_size);
#else
DEBUG(0,("Unexpected DFS referral request!\n"));
return(ERROR(ERRDOS,ERRbadfunc));
#endif
return(-1);
}