From: Volker Lendecke Date: Mon, 26 Mar 2012 11:09:33 +0000 (+0200) Subject: s3: Rename a variable in inotify_watch for clarity X-Git-Url: http://git.samba.org/samba.git/?p=ab%2Fsamba.git%2F.git;a=commitdiff_plain;h=58c8857b72fc76fb4ef5787daa823e26b58e5f12 s3: Rename a variable in inotify_watch for clarity --- diff --git a/source3/smbd/notify_inotify.c b/source3/smbd/notify_inotify.c index fb972beafb9..a03ad49d82c 100644 --- a/source3/smbd/notify_inotify.c +++ b/source3/smbd/notify_inotify.c @@ -383,7 +383,7 @@ NTSTATUS inotify_watch(struct sys_notify_context *ctx, int wd; uint32_t mask; struct inotify_watch_context *w; - uint32_t filter = e->filter; + uint32_t orig_filter = e->filter; void **handle = (void **)handle_p; /* maybe setup the inotify fd */ @@ -408,7 +408,7 @@ NTSTATUS inotify_watch(struct sys_notify_context *ctx, /* get a new watch descriptor for this path */ wd = inotify_add_watch(in->fd, path, mask); if (wd == -1) { - e->filter = filter; + e->filter = orig_filter; DEBUG(1, ("inotify_add_watch returned %s\n", strerror(errno))); return map_nt_error_from_unix(errno); } @@ -419,7 +419,7 @@ NTSTATUS inotify_watch(struct sys_notify_context *ctx, w = talloc(in, struct inotify_watch_context); if (w == NULL) { inotify_rm_watch(in->fd, wd); - e->filter = filter; + e->filter = orig_filter; return NT_STATUS_NO_MEMORY; } @@ -428,11 +428,11 @@ NTSTATUS inotify_watch(struct sys_notify_context *ctx, w->callback = callback; w->private_data = private_data; w->mask = mask; - w->filter = filter; + w->filter = orig_filter; w->path = talloc_strdup(w, path); if (w->path == NULL) { inotify_rm_watch(in->fd, wd); - e->filter = filter; + e->filter = orig_filter; return NT_STATUS_NO_MEMORY; }