diff options
author | Jeremy Allison <jra@samba.org> | 1998-10-16 06:16:10 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 1998-10-16 06:16:10 +0000 |
commit | 04d79a9ae515e7259277f9980552f1d61df239f1 (patch) | |
tree | 8d48ab9c72d2e6919192a757b56ac5d63708bfe1 /source/include | |
parent | f69cf05ff56dffb313304964d5bf5e5aee2f40a7 (diff) | |
download | samba-04d79a9ae515e7259277f9980552f1d61df239f1.tar.gz samba-04d79a9ae515e7259277f9980552f1d61df239f1.tar.xz samba-04d79a9ae515e7259277f9980552f1d61df239f1.zip |
Re-added code to tell the user how many open files they
have. Needed for server diagnosis purposes...
Jeremy.
Diffstat (limited to 'source/include')
-rw-r--r-- | source/include/proto.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/include/proto.h b/source/include/proto.h index 09fe5b0873f..d563db39338 100644 --- a/source/include/proto.h +++ b/source/include/proto.h @@ -351,7 +351,7 @@ char *sid_to_string(pstring sidstr_out, DOM_SID *sid); BOOL string_to_sid(DOM_SID *sidout, char *sidstr); int str_checksum(const char *s); void zero_free(void *p, size_t size); -int set_maxfiles(void); +int set_maxfiles(int requested_max); /*The following definitions come from libsmb/clientgen.c */ @@ -1189,7 +1189,7 @@ BOOL trust_password_unlock(void); BOOL trust_password_delete( char *domain, char *name ); BOOL get_trust_account_password( unsigned char *ret_pwd, time_t *pass_last_set_time); BOOL set_trust_account_password( unsigned char *md4_new_pwd); -BOOL trust_get_passwd( unsigned char trust_passwd[16], char *myname, char *domain); +BOOL trust_get_passwd( unsigned char trust_passwd[16], char *domain, char *myname); /*The following definitions come from printing/pcap.c */ |