diff options
author | Richard Sharpe <sharpe@samba.org> | 1998-05-06 02:35:56 +0000 |
---|---|---|
committer | Richard Sharpe <sharpe@samba.org> | 1998-05-06 02:35:56 +0000 |
commit | b59916ebf77814edca91683e3fe6f30799d29dd2 (patch) | |
tree | c4280965f8bd0c62e44f293c00b9ed1ff6cf67b8 /source3/include | |
parent | f714ff90982b986b9b0498b2d11d0efd8a8aaf6b (diff) | |
download | samba-b59916ebf77814edca91683e3fe6f30799d29dd2.tar.gz samba-b59916ebf77814edca91683e3fe6f30799d29dd2.tar.bz2 samba-b59916ebf77814edca91683e3fe6f30799d29dd2.zip |
Real fix for clitar.c problems. Have now made all the right
things static, and have done a 'make proto; make clean; make'.
Still get 54 compiler warnings under Digital UNIX cc.
Honest. :-)
(This used to be commit 47eb7e5be2f12206bd2de0670be478d80e1d84de)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 9c0de0024f..fc41d18a1d 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -1547,14 +1547,14 @@ BOOL pm_process( char *FileName, void generate_next_challenge(char *challenge); BOOL set_challenge(char *challenge); -BOOL last_challenge(unsigned char *challenge); +BOOL last_challenge(char *challenge); user_struct *get_valid_user_struct(uint16 vuid); void invalidate_vuid(uint16 vuid); char *validated_username(uint16 vuid); int setup_groups(char *user, int uid, int gid, int *p_ngroups, int **p_igroups, gid_t **p_groups, int **p_attrs); -uint16 register_vuid(int uid,int gid, char *unix_name, char *requested_name, BOOL guest); +uint16 register_vuid(int uid,int gid, char *name,BOOL guest); void add_session_user(char *user); BOOL update_smbpassword_file( char *user, fstring password); void dfs_unlogin(void); @@ -1726,7 +1726,7 @@ int reply_lanman2(char *outbuf); int reply_nt1(char *outbuf); void close_cnum(int cnum, uint16 vuid); void exit_server(char *reason); -void standard_sub(int cnum,char *str,uint16 vuid); +void standard_sub(int cnum,char *str); char *smb_fn_name(int type); int chain_reply(char *inbuf,char *outbuf,int size,int bufsize); int construct_reply(char *inbuf,char *outbuf,int size,int bufsize); |