Re: Buffer Overflow?

2004-01-18 Thread Chuck Wolber
Maybe it is time to upgrade. Yes, that's the plan. I just figured the list was interested in the message. -Chuck -- http://www.quantumlinux.com Quantum Linux Laboratories, LLC. ACCELERATING Business with Open Technology The measure of the restoration lies in the extent to which we

Re: compatibility of snprintf() return value?

2004-01-18 Thread Wayne Davison
I've noted that the rsync configure setup + compatibility library ensures that we have a C99-compatible snprintf() to use, so we should all set. ..wayne.. -- To unsubscribe or change options: http://lists.samba.org/mailman/listinfo/rsync Before posting, read:

How to mask @ symbol in username?

2004-01-18 Thread Peter
Hi, I am trying to access an account with rsync that has a username like this: [EMAIL PROTECTED] Please note: this IS ONLY the username, so to login vie ssh I have to type [EMAIL PROTECTED] I think it´s Ensim Webppliance, that handles virtual accounts that way. So now, if I waqnt to access

Re: How to mask @ symbol in username?

2004-01-18 Thread Wayne Davison
On Sun, Jan 18, 2004 at 04:08:34PM +0100, Peter wrote: rsync -e ssh [EMAIL PROTECTED]@server.com:/home /backbup I think your only option at the moment is to tell the name to ssh directly, like this: rsync -e 'ssh -l [EMAIL PROTECTED]' server.com:/home /backup ..wayne.. -- To unsubscribe or

rsync 2.6.0 and Solaris 8

2004-01-18 Thread Bryan Blackburn
Trying to build rsync 2.6.0 on Solaris 8 (gcc 3.3.2) has revealed that some of the EAI_ defines exist on Solaris, but not all of them. This causes lib/getaddrinfo.c to fail compilation as EAI_MAX (and some others) is undefined. The patch below fixes this issue, but I haven't tested the specific

CVS update: rsync

2004-01-18 Thread Wayne Davison
Date: Sun Jan 18 21:22:49 2004 Author: wayned Update of /data/cvs/rsync In directory dp.samba.org:/home/wayned/src/rsync Modified Files: batch.c Log Message: Use snprintf() instead of strlcpy()+strlcat(). Revisions: batch.c 1.23 = 1.24