1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-11 16:58:40 +03:00

Portability fix from Joachim Schmitz. Closes bug #546.

(This used to be commit 803ae4517265e4bb4639c4966e104b392913c7c0)
This commit is contained in:
Tim Potter 2003-10-02 23:50:22 +00:00
parent a234b822d4
commit b914f2ab6c

View File

@ -213,7 +213,7 @@ static BOOL recycle_create_dir(vfs_handle_struct *handle, const char *dname)
char *tok_str;
BOOL ret = False;
mode = S_IREAD | S_IWRITE | S_IEXEC;
mode = S_IRUSR | S_IWUSR | S_IXUSR;
tmp_str = strdup(dname);
ALLOC_CHECK(tmp_str, done);