diff options
author | Jeremy Allison <jra@samba.org> | 1998-08-17 22:59:53 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 1998-08-17 22:59:53 +0000 |
commit | b935fc086285e73203e5f3af80041489e893ee1a (patch) | |
tree | 351e308d10126cc89dceead9a38de9d2c59d02b2 /source3/include/proto.h | |
parent | 28788ca46c06d00a472949fd3de7b64988925283 (diff) | |
download | samba-b935fc086285e73203e5f3af80041489e893ee1a.tar.gz samba-b935fc086285e73203e5f3af80041489e893ee1a.tar.bz2 samba-b935fc086285e73203e5f3af80041489e893ee1a.zip |
Fixed bug introduced by the recent changes where the chain_fnum
could be overwritten in oplock processing code.
Jeremy.
(This used to be commit 908a583b48e37c5e869216f4dc92d4a587ff1238)
Diffstat (limited to 'source3/include/proto.h')
-rw-r--r-- | source3/include/proto.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 56f888dbdd..07e3b70dba 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -2008,6 +2008,8 @@ void file_sync_all(connection_struct *conn); void file_free(files_struct *fsp); files_struct *file_fsp(char *buf, int where); void file_chain_reset(void); +void file_chain_save(void); +void file_chain_restore(void); /*The following definitions come from smbd/groupname.c */ @@ -2210,7 +2212,7 @@ int reply_getattrE(connection_struct *conn, char *inbuf,char *outbuf, int dum_si /*The following definitions come from smbd/server.c */ -void *dflt_sig(void); +void *dflt_sig(void); void killkids(void); BOOL reload_services(BOOL test); void exit_server(char *reason); |