Displaying 4 results from an estimated 4 matches for "s_iexec".
Did you mean:
msiexec
2002 Jun 27
2
Samba 2.2.5 Recycle Bin file permissions
Using Samba 2.2.5 on FreeBSD 4.5.
We have a file share used by several people working on common projects.
The share is set up with
force group = cad
create mask = 0774
force create mode = 0774
directory mask = 0775
force directory mode = 0775
so that everyone can create/modify any file in the share.
The new VFS recycle bin, however, sets the file
2013 May 06
4
[Bug 9860] New: Fix Android build
https://bugzilla.samba.org/show_bug.cgi?id=9860
Summary: Fix Android build
Product: rsync
Version: 3.1.0
Platform: All
OS/Version: Other
Status: NEW
Severity: normal
Priority: P5
Component: core
AssignedTo: wayned at samba.org
ReportedBy: dpb at corrigendum.ru
QAContact: rsync-qa
2003 Feb 22
1
rsync ported to BeOS-bone
...;length);
+ recv_ok = recv_data(f_in,buf,fd2,fname,file->length);
log_recv(file, &initial_stats);
--- rsync-2.5.6.org/batch.c Tue Dec 24 08:42:04 2002
+++ rsync-2.5.6/batch.c Fri Feb 21 16:45:47 2003
@@ -8,6 +8,10 @@
#include "rsync.h"
#include <time.h>
+#ifndef S_IEXEC
+# define S_IEXEC 0x040
+#endif
+
extern char *batch_prefix;
struct file_list *batch_flist;
-------------- next part --------------
POSIXLY_CORRECT=1 TOOLDIR=`pwd` rsync_bin=`pwd`/rsync srcdir="." ./runtests.sh
============================================================
./runtests.sh...
2002 Feb 07
1
Latest version of the batch mode cleanup patch
...xtension */
+ strlcpy(filename, batch_prefix, sizeof(filename));
+ strlcat(filename, rsync_argvs_file, sizeof(filename));
+
+ /*
+ * Open batch argvs file for writing;
+ * create it if it doesn't exist
+ */
+ fdb = do_open(filename, O_WRONLY | O_CREAT | O_TRUNC,
S_IREAD | S_IWRITE | S_IEXEC);
if (fdb == -1) {
rprintf(FERROR, "Batch file %s open error: %s\n",
- rsync_argvs_file, strerror(errno));
+ filename, strerror(errno));
close(fdb);
exit_cleanup(1);
}
buff[0] = '\0';
+
/* Write argvs info to batch file */
for (i = 0; i < argc; ++i) {
-...