On Mon, Sep 19, 2011 at 4:22 PM, Joerg Sonnenberger
wrote:
> No, the idea is to make it possible to set O_CLOEXEC atomically. Of
> course, the pipe2 system call as implemented in Linux is kind of messed
> up, since the flag attribute applies to both sides of the pipe.
If you need O_CLOEXEC, you w
As some of you may have noticed, some of us are currently in Slovenia
doing a hackathon of sorts. About 20 of us. Lots of good stuff
coming out of it. If you see diffs you can test, please do so.
For those who don't know about our hackathons, see
http://www.openbsd.org/hackathons.html
The
On Tue, Sep 20, 2011 at 01:41:35AM +0300, Paul Irofti wrote:
> This time its their pipe2 system call which adds flags to the pipe call.
> Its the unix-ish way apparently to turn pipes into files on a kernel
> filesystem, or so they claim.
No, the idea is to make it possible to set O_CLOEXEC atomic
Linux keeps surprising me everytime!
This time its their pipe2 system call which adds flags to the pipe call.
Its the unix-ish way apparently to turn pipes into files on a kernel
filesystem, or so they claim.
Anywho, this fixes glibc pipe2 system calls by wrapping against the
regular pipe systemc
On Mon, 19 Sep 2011 10:11:50 -0400 (EDT)
logana...@devio.us (Loganaden Velvindron) wrote:
> This makes sftp similar to scp whereby
> one can also do something like:
> sftp user@remotehost://
>
> I'm too lazy to use interactive mode :-)
Check batch - '-b'. Anyway, if you want to improve sftp, th
> This makes sftp similar to scp whereby
> one can also do something like:
> sftp user@remotehost://
What you have written isn't even close to "similar". "A little bit like",
maybe. But not "similar".
The following adds support for Intel 82580 based cards like
the Intel i340 and HP NC365T. Please test to make sure
it does not break your existing em, especially with multiport
setups.
Index: if_em.c
===
RCS file: /cvs/src/sys/dev/pc
This makes sftp similar to scp whereby
one can also do something like:
sftp user@remotehost://
I'm too lazy to use interactive mode :-)
Index: sftp.c
===
RCS file: /cvs/src/usr.bin/ssh/sftp.c,v
retrieving revision 1.132
diff -u -p -
On 2011/09/19 16:29, Christiano F. Haesbaert wrote:
> Not sure if I got this, but why not using scp then ?
You might need to use the sftp protocol rather than scp with some
servers.
> On 19 September 2011 14:52, elitter.net wrote:
> > It's annoying to upload using interactive mode.
> >
> > This
On 28/06/11 1:24 PM, Jonathan Gray wrote:
The following fixes the gcc link spec so that gcc -rdynamic
will pass -export-dynamic to ld(1). export-dynamic/-E has
been a valid gnu ld option since 1994 and we use 2.15 everywhere
at the moment so this should be fine. objdump -T can
be used to easily
SFTP is better designed IMHO.
I agree that from a user's perspective, it doesn't really
matter much :-)
On Mon, Sep 19, 2011 at 11:29 PM, Christiano F. Haesbaert
wrote:
> Not sure if I got this, but why not using scp then ?
>
> On 19 September 2011 14:52, elitter.net wrote:
>> It's annoying to
Not sure if I got this, but why not using scp then ?
On 19 September 2011 14:52, elitter.net wrote:
> It's annoying to upload using interactive mode.
>
> This diff works like scp.
> sftp @:
>
> Index: sftp.c
> ===
> RCS file: /cvs/s
It's annoying to upload using interactive mode.
This diff works like scp.
sftp @:
Index: sftp.c
===
RCS file: /cvs/src/usr.bin/ssh/sftp.c,v
retrieving revision 1.132
diff -u -p -r1.132 sftp.c
--- sftp.c 4 Dec 2010 00:18:01 -000
Hello,
any comment? ;-)
best regards
Rafael Sadowski
cvs server: Diffing ifconfig
Index: ifconfig/ifconfig.c
===
RCS file: /cvs/src/sbin/ifconfig/ifconfig.c,v
retrieving revision 1.249
diff -u -r1.249 ifconfig.c
--- ifcon
Here's a small project for someone with basic C programming experience
and an understanding of UNIX system calls (e.g., file descriptors and
symbolic vs hard links). Thought I'd send it to tech@ first in case
anyone's interested in working on it as a starter project.
POSIX 2008 added two new flag
I can only confirm that this doesn't break anything on my machine. The
USB keyboard
is still working properly.
# dmesg | grep -i ehci
ehci0 at pci0 dev 29 function 7 "Intel 82801GB USB" rev 0x01: apic 1 int 23
usb0 at ehci0: USB revision 2.0
uhub0 at usb0 "Intel EHCI root hub" rev 2.00/1.00 addr
On 19/09/11(Mon) 09:46, Martin Pieuchot wrote:
> On 15/09/11(Thu) 00:10, Alexandr Shadchin wrote:
> > [...]
> >
> > Using { 0x7326, ALPS_UNSUPPORTED } is not best idea.
> >
> > Instead
> > if (alps->model & ALPS_UNSUPPORTED)
> > use
> > if (alps->model == 0)
> > or even better
> > #d
On Sat, Sep 17, 2011 at 11:02 PM, viq wrote:
> http://rt.openssl.org/Ticket/Display.html?id=2240&user=guest&pass=guest
>
> This affects us, I noticed when I had problems connecting with gajim to
> a certain server using TLS. Below patch lifted from openssl CVS fixes
> this.
I'm also affected by t
On 15/09/11(Thu) 00:10, Alexandr Shadchin wrote:
> [...]
>
> Using { 0x7326, ALPS_UNSUPPORTED } is not best idea.
>
> Instead
> if (alps->model & ALPS_UNSUPPORTED)
> use
> if (alps->model == 0)
> or even better
> #define ALPS_UNSUPPORTED 0
> ...
> if (alps->model ==
19 matches
Mail list logo