Displaying 6 results from an estimated 6 matches for "tuyoix".
2015 Nov 07
34
[Bug 2492] New: Incomplete output of child process
https://bugzilla.mindrot.org/show_bug.cgi?id=2492
            Bug ID: 2492
           Summary: Incomplete output of child process
           Product: Portable OpenSSH
           Version: 7.1p1
          Hardware: amd64
                OS: Linux
            Status: NEW
          Severity: major
          Priority: P5
         Component: sshd
          Assignee: unassigned-bugs at mindrot.org
     
2009 Sep 17
6
DO NOT REPLY [Bug 6741] New: 'deleting' messages show up in improper places
https://bugzilla.samba.org/show_bug.cgi?id=6741
           Summary: 'deleting' messages show up in improper places
           Product: rsync
           Version: 3.0.5
          Platform: x86
        OS/Version: Linux
            Status: NEW
          Severity: normal
          Priority: P3
         Component: core
        AssignedTo: wayned at samba.org
        ReportedBy: ascheel at
2015 Dec 10
0
[Bug 1467] improper handling of EWOULDBLOCK on HP
https://bugzilla.mindrot.org/show_bug.cgi?id=1467
Marc Aurele La France <tsi at tuyoix.net> changed:
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |tsi at tuyoix.net
-- 
You are receiving this mail because:
You are watching the assignee of the bug...
2023 May 17
0
[PATCH] Fix documentation typo
s/receiveing/receiving/
Marc.
diff -aNpRruz -X /etc/diff.excludes rsync-3.2.7/rsync.1.md devel-3.2.7/rsync.1.md
--- rsync-3.2.7/rsync.1.md	2022-10-16 13:27:30.000000000 -0600
+++ devel-3.2.7/rsync.1.md	2022-10-16 13:27:30.000000000 -0600
@@ -245,7 +245,7 @@ to be copied to different destination directories using more than one copy.
 While a copy of a case-ignoring filesystem to a case-ignoring
2023 May 17
1
[PATCH] Fix the counting of device files and symlinks
Device files should be counted as devices, not symlinks.
Marc.
diff -aNpRruz -X /etc/diff.excludes rsync-3.2.7/delete.c devel-3.2.7/delete.c
--- rsync-3.2.7/delete.c	2020-06-13 20:15:02.000000000 -0600
+++ devel-3.2.7/delete.c	2020-06-13 20:15:02.000000000 -0600
@@ -188,7 +188,7 @@ enum delret delete_item(char *fbuf, uint16 mode, uint16 flags)
 				stats.deleted_symlinks++;
 #endif
 			else if
2023 May 17
1
[PATCH] Add --omit-{device,special}-times options
Similar to --omit-{dir,link}-times:
--omit-device-times  omit device files from --times
--omit-special-times omit sockets and fifos from --times
Also, fix corner case that allows --omit-dir-times to be ignored.  See
unchanged_attrs() and recv_generator()'s call to try_dests_non().
Marc.
diff -aNpRruz -X /etc/diff.excludes rsync-3.2.7/generator.c devel-3.2.7/generator.c
---