diff options
author | Volker Lendecke <vl@samba.org> | 2012-03-26 13:11:02 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2012-03-26 13:11:02 +0200 |
commit | c3a506b64e248152212ab647048a47bd63039452 (patch) | |
tree | a955ae8a817f6dca068eea9c9d644cb5a5e34846 | |
parent | 58c8857b72fc76fb4ef5787daa823e26b58e5f12 (diff) | |
download | samba-c3a506b64e248152212ab647048a47bd63039452.tar.gz samba-c3a506b64e248152212ab647048a47bd63039452.tar.bz2 samba-c3a506b64e248152212ab647048a47bd63039452.zip |
s3: Fix a typo
-rw-r--r-- | source3/smbd/notify_inotify.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/notify_inotify.c b/source3/smbd/notify_inotify.c index a03ad49d82..967c223ada 100644 --- a/source3/smbd/notify_inotify.c +++ b/source3/smbd/notify_inotify.c @@ -402,7 +402,7 @@ NTSTATUS inotify_watch(struct sys_notify_context *ctx, } /* using IN_MASK_ADD allows us to cope with inotify() returning the same - watch descriptor for muliple watches on the same path */ + watch descriptor for multiple watches on the same path */ mask |= (IN_MASK_ADD | IN_ONLYDIR); /* get a new watch descriptor for this path */ |