diff options
author | Jeremy Allison <jra@samba.org> | 1998-12-22 22:04:06 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 1998-12-22 22:04:06 +0000 |
commit | 37ab7b878047d1165a4fe1f092bdc90b1779a9a8 (patch) | |
tree | 053a1387ffa8ee8ff3e69807262d43e213719050 /source/locking | |
parent | f0ac4d3961e10ed0ed9543e5cebad0d3019e44c8 (diff) | |
download | samba-37ab7b878047d1165a4fe1f092bdc90b1779a9a8.tar.gz samba-37ab7b878047d1165a4fe1f092bdc90b1779a9a8.tar.xz samba-37ab7b878047d1165a4fe1f092bdc90b1779a9a8.zip |
Fixed missing ';'s in locking_slow code.
Jeremy.
Diffstat (limited to 'source/locking')
-rw-r--r-- | source/locking/locking_slow.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source/locking/locking_slow.c b/source/locking/locking_slow.c index 5d2c5e7b664..f2eea7e7055 100644 --- a/source/locking/locking_slow.c +++ b/source/locking/locking_slow.c @@ -913,7 +913,7 @@ from the share file %s\n", i, num_entries, fname)); entry.op_port = SVAL(p,SME_PORT_OFFSET); entry.op_type = SVAL(p,SME_OPLOCK_TYPE_OFFSET); entry.share_mode = IVAL(p,SME_SHAREMODE_OFFSET); - entry.time.tv_sec = IVAL(p,SME_SEC_OFFSET) + entry.time.tv_sec = IVAL(p,SME_SEC_OFFSET); entry.time.tv_sec = IVAL(p,SME_USEC_OFFSET); (*mod_fn)( &entry, fsp->fd_ptr->dev, fsp->fd_ptr->inode, param); @@ -922,11 +922,11 @@ from the share file %s\n", i, num_entries, fname)); * Now copy any changes the function made back into the buffer. */ - SIVAL(p,SME_PID_OFFSET, entry.pid) + SIVAL(p,SME_PID_OFFSET, entry.pid); SSVAL(p,SME_PORT_OFFSET,entry.op_port); SSVAL(p,SME_OPLOCK_TYPE_OFFSET,entry.op_type); SIVAL(p,SME_SHAREMODE_OFFSET,entry.share_mode); - SIVAL(p,SME_SEC_OFFSET,entry.time.tv_sec) + SIVAL(p,SME_SEC_OFFSET,entry.time.tv_sec); SIVAL(p,SME_USEC_OFFSET,entry.time.tv_sec); found = True; |