r8366: Root-level files don't have a slash, but acls need to be settable on
[samba.git] / source3 / modules / vfs_afsacl.c
index 731ddfa58364f95f5ea6989e19513aa370b670aa..0e2e1295b9f7bf2a8e216a636c281de479ea47e8 100644 (file)
@@ -891,12 +891,14 @@ static BOOL afs_set_nt_acl(vfs_handle_struct *handle, files_struct *fsp,
        pstr_sprintf(name, fsp->fsp_name);
 
        if (!fsp->is_directory) {
+               /* We need to get the name of the directory containing the
+                * file, this is where the AFS acls live */
                char *p = strrchr(name, '/');
-               if (p == NULL) {
-                       DEBUG(3, ("No / in file string\n"));
-                       return False;
+               if (p != NULL) {
+                       *p = '\0';
+               } else {
+                       pstrcpy(name, ".");
                }
-               *p = '\0';
        }
 
        if (!afs_get_afs_acl(name, &old_afs_acl)) {