Displaying 20 results from an estimated 7000 matches similar to: "rsync.h always including syslog.h even when not used."
2002 Apr 15
3
Initial debug of client - Need command line help
I am trying to debug the RSYNC client and server by single stepping
through them.
The server seems to ok up to the point where it is waiting for the
client connection.
On the client side, I am having trouble finding the right options so
that it will connect up to the local server with out fork() a copy of
itself or trying to exec the rsh command.
This is on RSYNC 2.5.5 on OpenVMS Alpha.
If
2003 Oct 28
4
simple compile
I could not find this question anywhere, but I apologize if it is and I
just missed it.
Running an Alpha, OSF1 V5.1 1885
configure went fine.
compile failed:
cc -I. -I. -g -DHAVE_CONFIG_H -I./popt -c lib/getaddrinfo.c -o
lib/getaddrinfo.o
cc: Error: lib/getaddrinfo.c, line 182: In this statement, "EAI_MAX" is
not declared. (undeclared)
if (ecode < 0 || ecode > EAI_MAX)
2002 Jul 21
5
superlifter design notes (OpenVMS perspective)
> Qualities
>
> 1. Be reasonably portable: at least in principle, it should be
> possible to port to Windows, OS X, and various Unixes without major
> changes.
In general, I would like to see OpenVMS in that list.
> Principles
>
> 1. Clean design rather than micro-optimization.
A clean design allows optimization to be done by the compiler, and tight
optimization
2002 Jan 02
3
2.5.1pre3 - Bugs in configure script / config.h.in breaks build.
Compaq C 6.5
OpenVMS Alpha 7.3
The config.h.in template file is missing the line:
#undef HAVE_INET_NTOP
This caused the resulting CONFIG.H on OpenVMS to not test for the
existance of the inet_ntop() routine in it's system tables.
This configure bug exposed that the prototype in inet_ntop() in RSYNC.H
does not match the one in the Compaq C header files. This stopped the
build. I am
2002 Jul 27
1
superlifter design notes (was Re: ...
> From: jw schultz <jw@pegasys.ws.invalid>
>
> On Fri, Jul 26, 2002 at 09:03:32AM -0400, Bennett Todd wrote:
>
>>2002-07-26-03:37:51 jw schultz:
>>
>>>All that matters is that we can represent the timestamps in
>>>a way that allows consistent comparison, restoration and
>>>transfer.
>>
>>A very good statement indeed. There are
2002 Jan 07
2
rsync-2.5.1 / popt patches
The following popt files need patches in order to compile using Compaq C
on OpenVMS. These patches should also be needed on a Tru64 or LINUX on
ALPHA using Compaq C. Except for the alloca issue, these should work on
any ANSI compliant compiler.
Operating System: OpenVMS ALPHA V7.3
Compiler: Compaq C T6.5
Compiler switches: /WARN=ENABLE=(LEVEL4, QUESTCODE)
SYSTEM.H is doing tests on
1999 Jul 16
5
Samba for VMS
I just installed Samba for VMS (1.9.17p4) on a DecServer 1000A running VMS
7.1
The University Network is primarily NT Server 4.0 SP5. My experience is
with Netware and NT, not with VMS, but I have the luck of supporting the
system.....
My main question is about Encrypted Passwords.....Does this release of Samba
support them, or do I have to modify the clients who want access to our
Alpha to
2005 Feb 13
2
#include <inttypes.h> missing for 64 bit integers.
The Open Group Single Unix standard shows that the data types int64 and
uint64 are defined in the inttypes.h header file.
Rsync is not including this file, nor is there a feature test for this
header file in the configure phase, but rsync is using these data types.
-John
wb8tyw@qsl.net
Personal Opinion Only
2020 Jun 11
2
Patches for OpenVMS && Samba4
Refer to this:
https://legacyos.org/vsi-introduces-new-samba-release/
I noticed that VSI, the new owners of VMS, have created a package for
Samba4 under OpenVMS. I also notice the samba-vms list appears to be
abandoned (for years). So, I apologize for posting here on the general
list, but it seemed fruitless trying the dedicated list.
I am under the impression that the GPL v3 compels all
2001 Aug 14
1
malloc() with out free() in popt (2.4.7pre)
I am still chasing this down, but in doing the build for OpenVMS,
I have discovered that one of the popt modules is using HAVE_ALLOCA_H
to determine if the alloca function is on a platform.
That is not a good assumption. Compaq C does have an alloca() built in
(slightly different symbol name, I assume because of symbol naming rules
in the C standard.)
Because alloca is a non-standard
2005 Jul 05
2
rsync lib
Skipped content of type multipart/alternative-------------- next part --------------
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.323 / Virus Database: 267.8.9/39 - Release Date: 2005-07-04
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"
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
1999 Dec 27
2
help needed with smbclient with broken pipe
I am getting the following error from smbclient and am not sure as where the
problem is.
smb: \gcc\> dir
write_socket_data: write failure. Error = broken pipe
write_socket: Error writing 91 bytes to socket 3: ERRNO = broken pipe
failed session setup
Error writing 91 bytes to client. -1. Exiting
This appears to be happening about a minute after I establish a session. Up
until that time file
2001 Aug 31
3
handling of 'use chroot'
At the moment, if you start an rsyncd that's not running as root using
default settings it will have some trouble. rsyncd tries to use
chroot by default, but this will always fail if it's not started by
root. It does emit an error message in this case, but I wonder if
some people find this a bit confusing until they discover the setting.
I have in the past.
It might be better that if
2001 Aug 06
5
rsync-2.4.7 NEWS file
I've gone through the CVS commit log and tried to get every
user-visible change since 2.4.6, so that we can make a proper
announcement for 2.4.7. Please let me know if anything is
missing/inaccurate.
At this stage I'm planning to release two 2.4.7pre tarballs, one with
the "large nohang patch" and one without. Some people inside VA will
be stress-testing both, and so we can
1998 Dec 15
2
SAMBA 2.0 Packaging request
I do not know how many others are in this case, but I must use either floppies
or tapes to transport the Samba product after I download it.
Floppies are more convenient than tape because the tape medium is TK50 on
OpenVMS and it is very slow.
Is is possible to produce the production release in a two archive set so that
it can be more easily sneaker-netted?
Thank you, John Malmberg
2003 Aug 02
2
rsync on Windows 2000?
What is the status of rsync on Windows 2000?
I was looking to install it on my test system, and the download
directory has a readme file that says I need the cygnus gnu-win32 library.
The link refers me to the index page for cygnus, with no way to get to a
download area. A google search shows many mirrors of the download
directory. All I have checked are completely blank.
I will confess
2002 Nov 04
4
making --exclude-from=- read from stdin
--- exclude.c.org 2002-11-04 04:17:05.000000000 +0100
+++ exclude.c 2002-11-04 04:21:13.000000000 +0100
@@ -219,8 +219,15 @@
int fatal, int include)
{
struct exclude_struct **list=list1;
- FILE *f = fopen(fname,"r");
+ FILE *f;
char line[MAXPATHLEN];
+
+ if( fname[0]=='-' &&
2003 May 06
2
Recursive ssh
Hi all, I want to copy files from a remote server to a local directory with ssh. I've some difficulties with that because on the Remoteserver I have a directory "/www/ftp" with a lot of subdirectories with each of them 4 other subdirectories. I want to sync only */data/* to the local machine without */images/* or */doc/* or */movies/* Any solution would be appreciated. regardsMac