[SCM] Samba Shared Repository - branch v3-0-test updated -
release-3-0-32-67-gcc97e2a
Jeremy Allison
jra at samba.org
Tue Nov 18 20:44:43 GMT 2008
The branch, v3-0-test has been updated
via cc97e2a0d51f52a79982ac265f073d3829c1357a (commit)
from 67692e9b8f5ae09702c73c081f3a6937bd6de518 (commit)
http://gitweb.samba.org/?p=samba.git;a=shortlog;h=v3-0-test
- Log -----------------------------------------------------------------
commit cc97e2a0d51f52a79982ac265f073d3829c1357a
Author: Dina Fine <dina at exanet.com>
Date: Tue Nov 18 12:43:26 2008 -0800
Fix bug #5908 - Samba 3.0.32 - internal change notify on share directory fails"
-----------------------------------------------------------------------
Summary of changes:
source/smbd/notify.c | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
Changeset truncated at 500 lines:
diff --git a/source/smbd/notify.c b/source/smbd/notify.c
index 6e24466..b017237 100644
--- a/source/smbd/notify.c
+++ b/source/smbd/notify.c
@@ -349,6 +349,9 @@ void notify_fname(connection_struct *conn, uint32 action, uint32 filter,
{
char *fullpath;
+ if (path[0] == '.' && path[1] == '/') {
+ path += 2;
+ }
if (asprintf(&fullpath, "%s/%s", conn->connectpath, path) == -1) {
DEBUG(0, ("asprintf failed\n"));
return;
--
Samba Shared Repository
More information about the samba-cvs
mailing list