Displaying 1 result from an estimated 1 matches for "dmapi_trace".
2006 Oct 29
1
dmapi doesn't work on aix; possible fix included
...wn the problem.  The patch is at the bottom of this email.
The first problem is this snippet in dmapi_file_flags() in smbd/dmapi.c:
         err = dm_path_to_handle(CONST_DISCARD(char *, path),
                 &dm_handle, &dm_handle_len);
         if (err < 0) {
                 DEBUG(DMAPI_TRACE, ("dm_path_to_handle(%s): %s\n",
                             path, strerror(errno)));
                 if (errno != EPERM) {
                         return 0;
                 }
On AIX, dm_path_to_handle() is returning EACCES instead of EPERM, so it 
hits the return 0.  Is EPERM sup...