summaryrefslogtreecommitdiff
path: root/source3/locking/posix.c
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2008-01-11 13:41:46 +0100
committerMichael Adam <obnox@samba.org>2008-04-21 00:21:24 +0200
commit8c9060240eec82d750904d8b07fd38b168a84bea (patch)
treebaefcf67c85eba492a7742e37be424461f792e1d /source3/locking/posix.c
parent2f8dde9ec8110557c23df6ea66913a7d39425415 (diff)
downloadsamba-8c9060240eec82d750904d8b07fd38b168a84bea.tar.gz
samba-8c9060240eec82d750904d8b07fd38b168a84bea.tar.bz2
samba-8c9060240eec82d750904d8b07fd38b168a84bea.zip
Slight reformatting of fd_close_posix(), while I'm at it.
Wrap lines and remove trailing space. Michael (This used to be commit 74ed53a115b2063d4d5c8572af8f1302bc658882)
Diffstat (limited to 'source3/locking/posix.c')
-rw-r--r--source3/locking/posix.c14
1 files changed, 9 insertions, 5 deletions
diff --git a/source3/locking/posix.c b/source3/locking/posix.c
index aedc12dede..32e1ee9fbf 100644
--- a/source3/locking/posix.c
+++ b/source3/locking/posix.c
@@ -614,7 +614,9 @@ int fd_close_posix(struct files_struct *fsp)
int *fd_array = NULL;
size_t count, i;
- if (!lp_locking(fsp->conn->params) || !lp_posix_locking(fsp->conn->params)) {
+ if (!lp_locking(fsp->conn->params) ||
+ !lp_posix_locking(fsp->conn->params))
+ {
/*
* No locking or POSIX to worry about or we want POSIX semantics
* which will lose all locks on all fd's open on this dev/inode,
@@ -626,8 +628,9 @@ int fd_close_posix(struct files_struct *fsp)
if (get_windows_lock_ref_count(fsp)) {
/*
- * There are outstanding locks on this dev/inode pair on other fds.
- * Add our fd to the pending close tdb and set fsp->fh->fd to -1.
+ * There are outstanding locks on this dev/inode pair on
+ * other fds. Add our fd to the pending close tdb and set
+ * fsp->fh->fd to -1.
*/
add_fd_to_close_entry(fsp);
@@ -642,7 +645,8 @@ int fd_close_posix(struct files_struct *fsp)
count = get_posix_pending_close_entries(talloc_tos(), fsp, &fd_array);
if (count) {
- DEBUG(10,("fd_close_posix: doing close on %u fd's.\n", (unsigned int)count ));
+ DEBUG(10,("fd_close_posix: doing close on %u fd's.\n",
+ (unsigned int)count));
for(i = 0; i < count; i++) {
if (close(fd_array[i]) == -1) {
@@ -672,7 +676,7 @@ int fd_close_posix(struct files_struct *fsp)
if (ret == 0 && saved_errno != 0) {
errno = saved_errno;
ret = -1;
- }
+ }
return ret;
}