search for: thhey

Displaying 3 results from an estimated 3 matches for "thhey".

Did you mean: they
2003 Jun 07
1
patch to rsync to add options for pre- and post-transfer commands
...6.orig/main.c rsync-2.5.6/main.c *** rsync-2.5.6.orig/main.c 2003-01-27 22:05:53.000000000 -0700 --- rsync-2.5.6/main.c 2003-05-19 14:18:32.000000000 -0600 *************** *** 69,75 **** * message describing the purpose of the child. Also indicate * this to the caller so that thhey know something went * wrong. */ ! *status = WEXITSTATUS(*status); } static void report(int f) --- 69,75 ---- * message describing the purpose of the child. Also indicate * this to the caller so that thhey know something went * wrong. */ ! if (...
2005 Sep 23
1
Unexplained error
Hello, I like to use rsync to transfer over mine and other peoples ever changing mail folder onto a remote server. My Server (FreeBSD 5.4) RSYNC Version is: 2.6.6 Protocol Version 29 My Client (OSX 10.4.2) RSYNC Version is: 2.6.3 Protocol Version 28 I use this command rsync -vvv --progress --stats --recursive --times \ --perms --links \ --delete /test/my?email?folder/*
2006 Feb 13
1
rsync SIGSEGV signal handler in Cygwin.
..., "some files could not be transferred" }, diff -ur rsync-2.6.6/main.c rsync/main.c --- rsync-2.6.6/main.c Thu May 12 11:43:14 2005 +++ rsync/main.c Sat Jan 28 06:29:06 2006 @@ -114,6 +114,14 @@ * message describing the purpose of the child. Also indicate * this to the caller so that thhey know something went * wrong. */ + if (WIFSIGNALED(*status)) + rprintf(FLOG, + "rsync error: (2) Child proccess has unexpectedly died with signal %d\n", + WTERMSIG(*status)); + else if (WIFEXITED(*status) && WEXITSTATUS(*status) == RERR_CRASH) + rprintf(FLOG, + "rsy...