Displaying 20 results from an estimated 1000 matches similar to: "(fwd from mbp@samba.org) CVS update: rsync"
2015 Apr 08
10
Build-system cleanups
Hi everyone
Following are a number of build-system cleanup patches. Some of them are
prep-work for a possible upcoming automake/gnulib introduction.
Best regards,
Tiziano
2015 Dec 10
2
[PATCH] Receive multiple packets at a time
Hello,
Guus Sliepen, on Wed 02 Dec 2015 13:53:37 +0100, wrote:
> That's great! It would be good though to split
> handle_incoming_vpn_data() into a function that does the actual
> recvfrom/mmsg() and one that processes each individual packet, to reduce
> the level of indentation and make the functions a bit more readable.
> Then I'll merge it :)
Here it is.
Samuel
2004 Sep 10
5
autoheader failing?
With these versions:
ii autoconf 2.54-2 automatic configure script builder
ii automake1.6 1.6.3-2 A tool for generating GNU Standards-complian
I am unable to build the autoconfiscations. autoheader gives:
autoheader2.50: error: AC_CONFIG_HEADERS not found in configure.in
What versions are you using?
(btw, I do think it would be a very good idea to start using
2015 Dec 02
5
[PATCH] Receive multiple packets at a time
Hello,
Linux has a recvmmsg() system call which allows to achieve several
recvfrom() at a time. The patch below makes tinc use it (patch against
1.1-pre11). Basically the patch turns the handle_incoming_vpn_data
variables into arrays (of size 1 when recvmmsg is not available, and
thus compiled the same as before), and makes the code index into the
arrays. You may want to use interdiff -w
2001 Apr 07
1
samba on NetBSD - some patches
Hi,
We (NetBSD) just received a bug report that smbclient's mput command usees
find(1) with a non-standard option "-maxdepth". This was replaced with a
simple call to ls(1). As I don't know how many of the patches from out
Packages Collection were sent to you in the past, I'm simply sending you
all our patches - please include any you like in future samba releases!
BTW,
2018 Jan 22
3
tinc 1.1: freeaddrinfo(NULL) crash on windows
On Windows, freeaddrinfo(NULL) will result in a segv. In
get_recent_address(), there is the following block of code:
if(cache->aip) {
sockaddr_t *sa = (sockaddr_t *)cache->aip->ai_addr;
cache->aip = cache->aip->ai_next;
if(!cache->aip) {
freeaddrinfo(cache->aip);
2009 Jul 31
2
[Bug 23056] New: trouble with KMS on MBP w/ 8600M GT
http://bugs.freedesktop.org/show_bug.cgi?id=23056
Summary: trouble with KMS on MBP w/ 8600M GT
Product: xorg
Version: unspecified
Platform: Other
OS/Version: All
Status: NEW
Severity: normal
Priority: medium
Component: Driver/nouveau
AssignedTo: nouveau at lists.freedesktop.org
ReportedBy:
2002 Apr 09
3
getaddrinfo.c error compiling rsync on tru64 5.1A
i've applied albert chin's patch on configure.in file:
http://lists.samba.org/pipermail/rsync/2002-January/005726.html,
but i still getting the error:
cc: Error: lib/getaddrinfo.c, line 180: In this statement, "EAI_MAX" is not
declared. (undeclared)
thanks for any advice
Martin Sigilfredo
_________________________________________________________________
Join the world’s
2007 May 24
9
No zfs_nocacheflush in Solaris 10?
Hi,
I''m running SunOS Release 5.10 Version Generic_118855-36 64-bit
and in [b]/etc/system[/b] I put:
[b]set zfs:zfs_nocacheflush = 1[/b]
And after rebooting, I get the message:
[b]sorry, variable ''zfs_nocacheflush'' is not defined in the ''zfs'' module[/b]
So is this variable not available in the Solaris kernel?
I''m getting really poor
2004 Sep 02
2
[LLVMdev] Type uint64_t required but not found
Hi John,
configure still exits, when checking for uint64_t. I've attached a patch,
that properly will fix it. Either uint64_t or u_int64_t will succeed:
Index: configure.ac
===================================================================
RCS file: /var/cvs/llvm/llvm/autoconf/configure.ac,v
retrieving revision 1.106
diff -u -r1.106 configure.ac
--- configure.ac 2 Sep 2004 18:44:44 -0000
2004 Sep 02
0
[LLVMdev] Type uint64_t required but not found
Henrik Bach wrote:
} Hi John,
}
} configure still exits, when checking for uint64_t. I've attached a patch,
} that properly will fix it. Either uint64_t or u_int64_t will succeed:
}
} Index: configure.ac
} ===================================================================
} RCS file: /var/cvs/llvm/llvm/autoconf/configure.ac,v
} retrieving revision 1.106
} diff -u -r1.106 configure.ac
} ---
2018 Feb 16
2
tinc 1.1: freeaddrinfo(NULL) crash on windows
On Mon, 22 Jan 2018 18:08:22 +0100, Guus Sliepen wrote:
> Thanks for reporting this bug! Indeed, that code is wrong. It should
> free cache->ai instead of cache->aip. Even if it didn't crash on Linux,
> it was a memory leak. A fix is now in the git repository.
The fix leads to a use after free bug which is visible on macOS.
It doesn't seem to be much of a problem on most
2003 Sep 17
2
RE Openssh-3.7.1p1
I tried the same work-around on Irix 6.5.15, with both GCC and SGI C
compilers. I was able to get it to run and prompt for a password, then it
just shut down. Still no solution, but I will continue working. Anyone get
it to run on Irix yet?
Jim
Attempted compilation of openssh v3.7.1p1 on SGI IRIX 6.5.13. Compilation
failed due to missing inet_ntoa.h in openbsd-compat. Copied inet_ntoa.h from
2002 Jan 31
3
Error when compile rsync
Hi,
I tried to compile rsync-2.5.2 on Solaris 5.7 Ultra-2 machine,
5.7 on Ultra-2 is running 64 bit, but, when I ran configure,
it said no for largefile, I thought 2.5.2 will support large
file? Is that true?
Thanks,
Jennifer
2002 Jan 04
1
Patch for 2.5.1 on Tru64 UNIX 5.x
Tru64 UNIX has getaddrinfo but not by that name. Including <netdb.h>
#defines getaddrinfo to ogetaddrinfo or ngetaddrinfo which exists in
/usr/shlib/libc.so. So, AC_CHECK_FUNC(getaddrinfo) isn't enough to
test for getaddrinfo. Best to AC_TRY_LINK so the #define takes effect.
--
albert chin (china@thewrittenword.com)
-- snip snip
--- configure.in.orig Thu Jan 3 19:03:54 2002
+++
2001 Sep 27
1
library() and lib.loc
library() takes lib.loc as the third argument. Where is this set? I am
modifying the default library search path and everything seems to be
ok except for this (I want R_HOME/lib/library rather than
R_HOME/library).
--
albert chin (china at thewrittenword.com)
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read
2003 Oct 01
5
Recent OpenSSL vulnerability require rebuild of OpenSSH
We have OpenSSH built against a static version of the OpenSSL library.
Do the recent OpenSSL vulnerabilities necessitate a rebuild of
OpenSSH?
http://www.openssl.org/news/secadv_20030930.txt
>From the description of the four bugs, I'm inclined to think not.
--
albert chin (china at thewrittenword.com)
2002 Feb 19
2
rsync-2.5.3pre1 preview release -- please try it
Available now from samba.org and all mirrors. Please report bugs,
compilation problems, etc. If there are no major issues I think I
will put this out as 2.5.3 shortly, because it fixes a few serious
issues. Thanks to everybody who contributed patches.
rsync://samba.org/rsyncftp/preview/rsync-2.5.3pre1.tar.gz\*
rsync 2.5.3 (not released yet)
SECURITY FIXES:
* Make sure that
2005 Oct 11
5
scp bug: newly created dirs do not inherit sgid bit
Dear developers,
I discovered that directories created by scp when recursive
copying into a sgid directory do not inherit the sgid bit. I believe
this is a bug. A patch to fix this is attached.
Regards,
Petr Skovron
-------------- next part --------------
--- scp.c.orig 2005-10-11 16:50:17.000000000 +0200
+++ scp.c 2005-10-11 16:57:25.000000000 +0200
@@ -876,8 +876,12 @@
2013 Jan 03
1
rb_alloc_func_t undeclared in ruby 1.8
ruby bindings fail to build with ruby 1.8.7 because rb_alloc_func_t does
not exist in this version of ruby. This happens due to commit
448a02373df95dafc0d4b3e4db0e77c96a09074d
Olaf