diff options
author | Andrew Bartlett <abartlet@samba.org> | 2011-06-08 16:27:06 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2011-06-09 12:40:09 +0200 |
commit | f348d148b463ca61cbc48d2aadeaa099f7150425 (patch) | |
tree | 0c9dd77dca2448a025df3293ccc7850281b8591d /source3/include | |
parent | 3ccc7609476139bc6a906110a2623605f3802159 (diff) | |
download | samba-f348d148b463ca61cbc48d2aadeaa099f7150425.tar.gz samba-f348d148b463ca61cbc48d2aadeaa099f7150425.tar.bz2 samba-f348d148b463ca61cbc48d2aadeaa099f7150425.zip |
s3-param Remove special case for global_scope()
There is no reason this can't be a normal constant string in the
loadparm system. (Past reasons were that we didn't have lp_set_cmdline())
Andrew Bartlett
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 2edd72e026..edcb025101 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -504,8 +504,6 @@ const char *get_global_sam_name(void); enum protocol_types get_Protocol(void); void set_Protocol(enum protocol_types p); bool all_zero(const uint8_t *ptr, size_t size); -bool set_global_scope(const char *scope); -const char *global_scope(void); void gfree_names(void); void gfree_all( void ); const char *my_netbios_names(int i); @@ -1198,6 +1196,7 @@ char *lp_passwd_program(void); char *lp_passwd_chat(void); const char *lp_passwordserver(void); const char *lp_name_resolve_order(void); +const char *lp_netbios_scope(void); const char *lp_workgroup(void); const char *lp_realm(void); const char *lp_dnsdomain(void); |