search for: 7834dcb

Displaying 2 results from an estimated 2 matches for "7834dcb".

2009 Aug 13
7
[PATCHx7] Misc patches
...rjones at trick.home.annexia.org> Date: Thu, 13 Aug 2009 14:39:59 +0100 Subject: [PATCH 3/7] inotify-add-watch does not need to explicitly check for ABS_PATH. --- daemon/inotify.c | 1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/daemon/inotify.c b/daemon/inotify.c index 7834dcb..3e314f0 100644 --- a/daemon/inotify.c +++ b/daemon/inotify.c @@ -129,7 +129,6 @@ do_inotify_add_watch (const char *path, int mask) char *buf; NEED_INOTIFY (-1); - ABS_PATH (path, return -1); buf = sysroot_path (path); if (!buf) { -- 1.6.2.5 -------------- next part -------------...
2009 Aug 12
23
[PATCH 0/23] factor and const-correctness
This started as a simple warning-elimination change. I'll get back to that series shortly ;-) It turned into a factorization and constification exercise during which I got a taste of ocaml. Thanks to Rich Jones for help with a few snippets in generator.ml. The overall result is that many previously-manually-maintained bits from daemon/*.c functions are now hoisted into the automatically-