1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00

Merge from 3.0:

>Portability fix from Joachim Schmitz.  Closes bug #546.
This commit is contained in:
Tim Potter 0001-01-01 00:00:00 +00:00
parent e071567eea
commit eb9f5c0ec1

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);