diff options
author | Stefan Metzmacher <metze@samba.org> | 2006-06-03 07:21:51 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:08:51 -0500 |
commit | 594ae8f9e193106b8b32102aa8c8c8d48045395b (patch) | |
tree | 56df164b043a750b611fff0b39a8b8f2b845dc09 /source4 | |
parent | e47c00414f4eb01951bb4ba3707cea4ffb82033d (diff) | |
download | samba-594ae8f9e193106b8b32102aa8c8c8d48045395b.tar.gz samba-594ae8f9e193106b8b32102aa8c8c8d48045395b.tar.bz2 samba-594ae8f9e193106b8b32102aa8c8c8d48045395b.zip |
r16023: we don't need a global variable here...
noticed by the Mac OS 10 linker
metze
(This used to be commit 5928112cbc004f59660c8131abccc0f4933c2da3)
Diffstat (limited to 'source4')
-rw-r--r-- | source4/smb_server/smb_server.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/smb_server/smb_server.h b/source4/smb_server/smb_server.h index a5c2b73dc7..f479bc35b4 100644 --- a/source4/smb_server/smb_server.h +++ b/source4/smb_server/smb_server.h @@ -280,7 +280,7 @@ struct substitute_context { /* Remote architectures we know about. */ enum remote_arch_types {RA_UNKNOWN, RA_WFWG, RA_OS2, RA_WIN95, RA_WINNT, RA_WIN2K, RA_WINXP, RA_SAMBA}; -enum security_types {SEC_SHARE,SEC_USER} security; +enum security_types {SEC_SHARE,SEC_USER}; /* smb server context structure. This should contain all the state * information associated with a SMB server connection |