diff options
author | Jeremy Allison <jra@samba.org> | 2000-04-12 00:37:08 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2000-04-12 00:37:08 +0000 |
commit | e1083ea7df16323e63efb6f752a6d5c6f0c4910e (patch) | |
tree | 646d35916944656b215cefe8a748520dda87d3ea /source3/include/proto.h | |
parent | 4743965cd9ac87ed7ad22902b2804e26d157c159 (diff) | |
download | samba-e1083ea7df16323e63efb6f752a6d5c6f0c4910e.tar.gz samba-e1083ea7df16323e63efb6f752a6d5c6f0c4910e.tar.bz2 samba-e1083ea7df16323e63efb6f752a6d5c6f0c4910e.zip |
Roll back to using static MACHINE.SID after consultation with Andrew. This
code will be removed soon and a SID auto-generated from (probably) primary
hostname and never stored in a file will replace it.
Jeremy.
(This used to be commit fbfe94a799cda7f728bc920d4f0655d4f537e3b6)
Diffstat (limited to 'source3/include/proto.h')
-rw-r--r-- | source3/include/proto.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index b7cfb83501..215529f697 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -403,9 +403,6 @@ DOM_SID *sid_dup(DOM_SID *src); BOOL sid_linearize(char *outbuf, size_t len, DOM_SID *sid); BOOL sid_equal(DOM_SID *sid1, DOM_SID *sid2); size_t sid_size(DOM_SID *sid); -BOOL read_sid(char *sam_name, DOM_SID *sid); -BOOL write_sid(char *sam_name, DOM_SID *sid); -BOOL create_new_sid(DOM_SID *sid); /*The following definitions come from lib/util_sock.c */ @@ -1486,7 +1483,7 @@ void pdb_set_last_set_time(char *p, int max_len, time_t t); void pdb_sethexpwd(char *p, unsigned char *pwd, uint16 acct_ctrl); BOOL pdb_gethexpwd(char *p, unsigned char *pwd); BOOL pdb_name_to_rid(char *user_name, uint32 *u_rid, uint32 *g_rid); -BOOL pdb_generate_sam_sid(char *domain_name, DOM_SID *sid); +BOOL pdb_generate_sam_sid(void); uid_t pdb_user_rid_to_uid(uint32 user_rid); gid_t pdb_user_rid_to_gid(uint32 user_rid); uint32 pdb_uid_to_user_rid(uid_t uid); |