summaryrefslogtreecommitdiff
path: root/source3/smbd/notify_inotify.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2009-06-27 11:31:53 +0200
committerVolker Lendecke <vl@samba.org>2009-06-27 12:25:01 +0200
commit0fb027565780eb225806893c8292bf9c2301fc1e (patch)
tree3ccb3475a394a658b56c40fb75e9c3d9f226adc7 /source3/smbd/notify_inotify.c
parenta702dea5a86f22e0b7857b67447152a06b3bbea2 (diff)
downloadsamba-0fb027565780eb225806893c8292bf9c2301fc1e.tar.gz
samba-0fb027565780eb225806893c8292bf9c2301fc1e.tar.bz2
samba-0fb027565780eb225806893c8292bf9c2301fc1e.zip
Fix some nonempty blank lines
Diffstat (limited to 'source3/smbd/notify_inotify.c')
-rw-r--r--source3/smbd/notify_inotify.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/source3/smbd/notify_inotify.c b/source3/smbd/notify_inotify.c
index 8237e4ab0b..a80927b830 100644
--- a/source3/smbd/notify_inotify.c
+++ b/source3/smbd/notify_inotify.c
@@ -2,17 +2,17 @@
Unix SMB/CIFS implementation.
Copyright (C) Andrew Tridgell 2006
-
+
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
-
+
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
-
+
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
@@ -142,12 +142,12 @@ static bool filter_match(struct inotify_watch_context *w,
return True;
}
-
+
/*
dispatch one inotify event
-
+
the cookies are used to correctly handle renames
*/
static void inotify_dispatch(struct inotify_private *in,
@@ -211,7 +211,7 @@ static void inotify_dispatch(struct inotify_private *in,
ne.action = NOTIFY_ACTION_MODIFIED;
e->mask = IN_ATTRIB;
-
+
for (w=in->watches;w;w=next) {
next = w->next;
if (w->wd == e->wd && filter_match(w, e) &&
@@ -296,7 +296,7 @@ static NTSTATUS inotify_setup(struct sys_notify_context *ctx)
/* add a event waiting for the inotify fd to be readable */
event_add_fd(ctx->ev, in, in->fd, EVENT_FD_READ, inotify_handler, in);
-
+
return NT_STATUS_OK;
}
@@ -350,7 +350,7 @@ static int watch_destructor(struct inotify_watch_context *w)
DEBUG(1, ("inotify_rm_watch returned %s\n",
strerror(errno)));
}
-
+
}
return 0;
}
@@ -431,7 +431,7 @@ NTSTATUS inotify_watch(struct sys_notify_context *ctx,
/* the caller frees the handle to stop watching */
talloc_set_destructor(w, watch_destructor);
-
+
return NT_STATUS_OK;
}