Displaying 20 results from an estimated 25 matches for "gdiff".
Did you mean:
diff
2002 Jan 07
0
rsync-2.5.1 / zlib patches
...can not
translate this to an OpenVMS specification.
The MACRO _MSC_VER is being tested for a value, when it may not exist.
The prototype for strerror() is different than the one in the standard
header file.
-John
wb8tyw@qsl.network
Personal Opinion Only
PROJECT_ROOT:[rsync_vms.ZLIB]ADLER32.GDIFF;1
--- ref_zlib:adler32.c Thu May 7 01:19:41 1998
+++ lcl_zlib:adler32.c Sun Jan 6 08:43:46 2002
@@ -1,3 +1,4 @@
+/* Converted by prj_src:unix_c_to_vms_c.tpu AND prj_zlib:adler32.tpu on
6-JAN-2002 08:43:46.62 OPENVMS_AXP */
/* adler32.c -- compute the Adler-32 checksum of a data stream...
2002 Jan 13
1
rsynd-2.5.1 / batch.c patch
Platform: Compaq OpenVMS Alpha 7.3
Compiler: Compaq C T6.5
The following patch is an update to a previous patch that I submitted.
The only change from the previous patch is that the const qualifier has
been added to write_batch_*() routines to improve compiler efficiency.
Because the gdiff -u was done against the distribution it includes the
previous patch.
The functions with no parameters were missing the void parameter.
The type (char) was being used where the usage indicated either (void)
or (unsigned char) should be used.
-John
wb8tyw@qsl.network
Personal Opinion Only
EAGLE...
2002 Jan 07
2
rsync-2.5.1 / popt patches
...h the definition of the poptStrerror
routine.
POPTHELP.C has an error with the definitions of the
getTableTranslationDomain() and getArgDescrip() routines.
Having a const qualifier on function return value is not legal.
It is legal to return a const pointer.
EAGLE> type lcl_popt:system_h.gdiff
--- ref_popt:system.h Fri Feb 23 19:32:22 2001
+++ lcl_popt:system.h Sun Jan 6 08:42:28 2002
@@ -1,3 +1,4 @@
+/* Converted by prj_src:unix_c_to_vms_c.tpu AND prj_popt:system.tpu on
6-JAN-2002 08:42:28.07 OPENVMS_AXP */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
@@ -7,7 +8...
2002 Jan 07
1
rsync-2.5.1 / socket.c - unititialized variable breaks build.
In socket.c, the variable error is unitilialzed.
Also the variable length should be an unsigned int.
EAGLE> type socket.gdiff
--- ref_src:socket.c Sat Jan 5 13:27:07 2002
+++ lcl_src:socket.c Sun Jan 6 08:40:51 2002
@@ -1,3 +1,4 @@
+/* Converted by prj_src:unix_c_to_vms_c.tpu AND prj_src:socket.tpu on
6-JAN-20
02 08:40:51.01 OPENVMS_AXP */
/* -*- c-file-style: "linux" -*-
Copyright (C) 1992-2001...
2002 Jan 07
0
rsync-2.5.1 / lib patches
.../WARN=ENABLE=(LEVEL4, QUESTCODE)
fnmatch.c and mdfour.c. Compaq C on OpenVMS can not deal with relative
path names in #include files.
Also the local prototype for getenv() does not match the one in stdlib.h.
-John
wb8tyw@qsl.network
Personal Opinion Only
PROJECT_ROOT:[rsync_vms.LIB]FNMATCH.GDIFF;1
--- ref_lib:fnmatch.c Sat Jan 29 05:35:04 2000
+++ lcl_lib:fnmatch.c Sun Jan 6 08:42:06 2002
@@ -1,4 +1,9 @@
+/* Converted by prj_src:unix_c_to_vms_c.tpu AND prj_lib:fnmatch.tpu on
6-JAN-2
002 08:42:06.02 OPENVMS_AXP */
+#ifdef __VMS
+#include "rsync.h"
+#else
#include "...
2002 Apr 02
3
getaddrinfo() problem with AIX 4.3.3 and rsync 2.5.2?
...ing used had a large port
number
in it (like 32835). It seems wrong-headed to pass that port to getaddrinfo
to check for host name validity, but since I don't know much network
programming,
I'll defer to almost anyone :-)
Perhaps it's just AIX 4.3.3 getaddrinfo() that's busted?
$ gdiff -u clientname.c.orig clientname.c
--- clientname.c.orig Fri Jan 25 17:59:37 2002
+++ clientname.c Mon Apr 1 13:32:10 2002
@@ -240,7 +240,7 @@
hints.ai_family = ss_family;
hints.ai_flags = AI_CANONNAME;
hints.ai_socktype = SOCK_STREAM;
- error = getaddrinfo(na...
2006 Apr 01
1
Sys.sleep() burns up CPU on Solaris 8
...patch against R-2.2.1 fixes the problem. Note that the
test of the return value for R_SelectEx() was also incorrect; although
harmless, it was treating the error return (-1) as a successful return.
stephen pope
scp at predict.com
Here's the patch.
build_main at mambo:/vobs/products/R> gdiff -ub src/unix/sys-std.c@@/main/3
src/unix/sys-std.c
--- src/unix/sys-std.c@@/main/3 Thu Jan 12 11:39:55 2006
+++ src/unix/sys-std.c Fri Mar 31 23:12:16 2006
@@ -294,13 +294,13 @@
else onintr();
}
- tv.tv_sec = 0;
- tv.tv_usec = usec;
+ tv.tv_sec = usec/1000000;
+ tv.tv_...
2007 Feb 14
1
Re: qemu-0.9.0 with initial tap interface
> >% gdiff ../kqemu-osol-1.3.0pre9/kqemu-solaris.c .
> >54c54
> >< static uint_t kqemu_busy = 0;
> >---
> >
> >
> >>static uint32_t kqemu_busy = 0;
> >>
> >>
> >73c73
> >< static uint_t upages_locked = 0;
> >---
> >...
2010 Oct 20
0
bootstrapping nonlinear mixed effects models
...(A, indices) {
mboot <- nls(weight ~ SSlogis(Time, a, b, c), data=Soybean[indices, ])
return(coef(mboot))
}
require(boot)
boot1 <- boot(Soybean, bstat, 2000)
boot1
For nonlinear mixed effects models it doesn't work.
> stat.nlme <- function(A, indices) {
+ boot.nlme <- nlme(Gdiff/0.5 ~ SSlogis(tmmean,a,b,c),
+ fixed=list(a+b+c~1),
+ random = list(a+b+c~1), data = Soybean[indices,])
+ return(fixef(boot.nlme))
+ }
>
> require(boot)
> bb <- boot(Soybean, stat.nlme, 2000)
Error in parse(text = paste("~", paste(nVal, collapse = "/"))) :
une...
2002 Jan 16
0
[Bug 65] New: TCP Wrappers support does not log successful connections
...ce thing to have, since
it shows that the allowed connection passed the wrappers. That, and tcpd and
the commercial [at least verision 1.2.whatever] do it.
------- Additional Comments From jap3003+opensshbugs at ksu.edu 2002-01-07 09:54 -------
Created an attachment (id=8)
Patch to fix this bug (gdiff -u)
------- Additional Comments From markus at openbsd.org 2002-01-17 02:22 -------
shouln't the tcpwrapper do this?
we should not call syslog at all
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
2002 Jan 13
1
rsynd-2.5.1 / hlink.c patches
...or the qsort() routine was wrong, and not
allowing the compile to complete.
When the function definiton of the hlink_compare() is corrected to have
the const qualifiers, the cast inside the qsort() function call is no
longer needed.
-John
wb8tyw@qsl.network
Personal Opinion Only
EAGLE> gdiff -u ref_src:hlink.c lcl_src:hlink.c_unix
--- ref_src:hlink.c Sat Jan 5 13:27:03 2002
+++ lcl_src:hlink.c_unix Sat Jan 12 19:28:00 2002
@@ -23,7 +23,8 @@
extern int verbose;
#if SUPPORT_HARD_LINKS
-static int hlink_compare(struct file_struct *f1,struct file_struct *f2)
+static int hl...
2002 Jan 13
0
rsynd-2.5.1 / checksum.c patches
...d)
or (unsigned char) should be used.
The const qualifier was added to impove compiler efficiency.
There may be more cases in this module where type (char) is being used
instead of what appears should be (unsigned char).
-John
wb8tyw@qsl.network
Personal Opinion Only
EAGLE> type checksum.gdiff
--- ref_src:checksum.c Sat Jan 5 13:27:01 2002
+++ lcl_src:checksum.c Sun Jan 6 22:41:06 2002
@@ -1,3 +1,4 @@
+/* Converted by prj_src:unix_c_to_vms_c.tpu AND PRJ_SRC:CHECKSUM.TPU on
6-JAN-2002 22:41:06.45 OPENVMS_AXP */
/*
Copyright (C) Andrew Tridgell 1996
Copyright (C) Paul Ma...
2002 Feb 11
0
RSYNC 2.5.2 type mismatches in batch.c
...X equivalents of above compile flags:
LEVEL4 = All warnings
QUESTCODE = Do LINT processing on source.
-John
wb8tyw@qsl.network
Personal Opinion Only
batch.c
(char *) is being used as a type, when a generic structure is being passed.
(void *) appears to be what is needed.
EAGLE> type batch.gdiff
--- ref_src:batch.c Sat Feb 9 21:17:28 2002
+++ lcl_src:batch.c Sat Feb 9 23:09:27 2002
@@ -1,3 +1,4 @@
+/* Converted by prj_src:unix_c_to_vms_c.tpu AND PRJ_SRC:BATCH.TPU on
9-FEB-2002 23:09:26.95 OPENVMS_AXP */
/* -*- c-file-style: "linux" -*-
Weiss 1/1999
@@ -22,7 +23...
2007 Jan 25
1
"rep" missing from methods:::.BasicFunsList
...methods:::genericForPrimitive("rep") to fail, which in turn causes
setMethod("rep", ...) to fail. (setGeneric("rep") of course fails as it
should, saying that rep is a primitive and methods can be set).
Here's the fix:
build_main at mambo:/vobs/products/R> gdiff -ub
src/library/methods/R/BasicFunsList.R@@/main/LATEST
src/library/methods/R/BasicFunsList.R
--- src/library/methods/R/BasicFunsList.R@@/main/LATEST Tue Jan 23
22:55:28 2007
+++ src/library/methods/R/BasicFunsList.R Wed Jan 24 23:56:32 2007
@@ -116,6 +116,10 @@
}
, "missing" =...
2007 Jan 04
7
Hi: New SUNWqemu cvs20070102tue in the works .... rgds. -Martin
²Š'
2002 Jan 07
0
rsync-2.5.1 / updated syscall.c "const" patch
...he "const" qualifiers for several of it's
functions. This patch should supercede the previous patch I submitted.
This was discovered while working on resovling the conflicts between
signed and unsigned values.
-John
wb8tyw@qsl.network
Personal Opinion Only
EAGLE> type syscall.gdiff
--- ref_src:syscall.c Sat Jan 5 13:27:07 2002
+++ lcl_src:syscall.c Sun Jan 6 23:12:41 2002
@@ -1,3 +1,4 @@
+/* Converted by prj_src:unix_c_to_vms_c.tpu AND prj_src:syscall.tpu on
6-JAN-2
002 23:12:41.17 OPENVMS_AXP */
/*
Copyright (C) Andrew Tridgell 1998
@@ -28,22 +29,24 @@
#d...
2000 Mar 17
3
Bug in SMBCLIENT
I already posted this message but I had no answer. Sincerely, I think it is
a bug and I'd like to hear developers on this.
Platform:
- HP-UX 11.00
- HP C/ANSI C Compiler (B.11.01.06)
Copying a (large) directory structure from a NT share, interactive
command:
# smbclient //machine/share password
>prompt
>recurse
>mget *
fails to copy 76th, 115th, 154th file of
2002 Jan 13
0
rsynd-2.5.1 / io.c patches
...roblems with the IO.C module.
The (char) type was being used where (void) was more appropriate based
on the actual use of the code.
The (char) type was also being used where the usage was actually an
(unsigned char).
const qualifiers were added to improve compile efficiency.
EAGLE> type io.gdiff
--- ref_src:io.c Sat Jan 5 13:27:04 2002
+++ lcl_src:io.c Sat Jan 12 18:29:18 2002
@@ -1,3 +1,4 @@
+/* Converted by prj_src:unix_c_to_vms_c.tpu AND PRJ_SRC:IO.TPU on
12-JAN-2002 18:29:18.32 OPENVMS_AXP */
/* -*- c-file-style: "linux" -*-
Copyright (C) 1996-2001 by...
2010 Mar 02
9
DO NOT REPLY [Bug 7194] New: Getting --inplace and --sparse to work together
https://bugzilla.samba.org/show_bug.cgi?id=7194
Summary: Getting --inplace and --sparse to work together
Product: rsync
Version: 3.0.7
Platform: All
OS/Version: All
Status: NEW
Severity: enhancement
Priority: P3
Component: core
AssignedTo: wayned at samba.org
ReportedBy: jansen at
2007 Dec 27
1
app works when copied with tar, not with rsync
...se:
cd /directory && gtar -cf - . | ssh serverB 'cd /directory && gtar -xpf -'
In both cases, the files transfer without issue (no warnings, no
errors). I have run the following tests to compare the copy made with
gtar versus the copy made with gtar on the remote server:
- gdiff -r /tar-copy /rsync-copy
<No differences reported>
- Ran sha1sum on each file in each copy and compared the outputs
<OK, this is ridiculous but I'm out of ideas. files are 100%
identical according to sha1sum>
- ls -@aR /tar-copy /rsync-copy | grep @
<To check...