Displaying 18 results from an estimated 18 matches for "rjk".
Did you mean:
rik
2016 Jan 25
2
Version of SFTP
The link
http://www.greenend.org.uk/rjk/sftp/sftpversions.html
On Mon, Jan 25, 2016 at 11:07 AM, Maria Shalet <mshalet at gmail.com> wrote:
> Dear Developers,
> In the Open SSH package, we have only V3 of sftp. Here the
> mode of transfer is only binary.
>
> According to the below link I fi...
2001 Oct 18
2
Incorrect return types for snprintf() and vsnprintf()
Both of these functions are using strlen() to create return value.
Cheers,
Scott Rankin
*** /openbsd-compat/bsd-snprintf.c.orig Thu Oct 18 13:57:51 2001
--- /openbsd-compat/bsd-snprintf.c Thu Oct 18 13:58:26 2001
***************
*** 632,638 ****
#endif /* !defined(HAVE_SNPRINTF) || !defined(HAVE_VSNPRINTF) */
#ifndef HAVE_VSNPRINTF
! int
vsnprintf(char *str, size_t count, const char *fmt,
2012 Nov 16
2
bge on the new Mac Mini
...subclass = ethernet
Is there a chance that adding the new card/chip info to the current driver would
allow it to work? I'll be happy to test and report back. I'm afraid I'm not
familiar enough with hardware at that level to figure out the patch myself.
Thanks!
--
Richard Kuhns <rjk at wintek.com> My Desk: 765-269-8541
Wintek Corporation Internet Support: 765-269-8503
427 N 6th Street STE C Consulting: 765-269-8504
Lafayette, IN 47901-2211 Accounting: 765-269-8502
2001 Sep 13
4
ssh argv[0] support
Right - I know you've had a discussion about the argv[0] stuff
already, but I've written this simple script to simulate the (now
missing) support for Debian, and was asked to send it to you...
--- ssh-argv0 ---
#! /bin/sh -e
if [ "${0##*/}" == "ssh-argv0" ]
then
echo 'ssh-argv0: This script should not be run like this, see
ssh-argv0(1) for details'
2013 Mar 09
0
[LLVMdev] Fw: message
http://tiroasegnopuglia.com/rjk/dlm/plpfixlfpfqnr=ocrh
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130309/1942c982/attachment.html>
2009 Mar 15
0
Bug#477525: Suggested fix
...nt of network-route's imagination;
I can see no evidence of it elsewhere in the Debian Xen packages.
Since network-route claims to default to eth0 and does not document
vifnum at all, the obvious fix would be to change:
netdev=${netdev:-eth${vifnum}}
to:
netdev=${netdev:-eth0}
ttfn/rjk
2001 Jul 22
1
[patch] VPN enhancements
Hi,
This patch (mostly my work, except for protocolkeepalives, which
rjk at greenend.org.uk wrote for 2.5, and I forward-ported) came out our
usage for VPN tunnels of ssh, where it was useful for ssh to notice if
the server went away. It includes documentation, and is pretty
self-explanatory.
Matthew
-------------- next part --------------
An embedded and charset-unsp...
2009 Jul 10
1
Bug#520641: Cannot create HVM domain
This happens when there's not enough free memory to compensate the
memory overhead of domain creation, xend balloons down dom0 by 2MB
to work around this, but sometimes it's not enough.
Freeing more memory manually, or disabling ballooning of dom0
altogether (a good idea in any case) fixes it.
--
Romain Francoise <rfrancoise at debian.org>
http://people.debian.org/~rfrancoise/
2007 May 09
1
-s file permission flag
I'm new samba user, and new to this list. I have a fs mount to a
windows share from Ubuntu 7.0.4. Samba version looks like 3. When I
copy files I get file permissions like this:
-rwxr-Sr-t
I'm not familiar with the S and t flags. Will someone kindly point me
to some documentation about them. Also, is there a recommended
searchable archive of this list?
-Dave
2007 Mar 19
1
-std=c99 and inline semantics
Hi,
I noticed that with the GCC trunk (4.3.0), the semantics of "extern
inline" have reversed.
The net result is that R will build without the usual-stdc=gnu99 but it
won't with it.
Many multiple definitions result otherwise.
Marcus
2005 Apr 07
0
R 2.1.0 (beta) on IRIX
...2
The function BZ2_indexIntoF is declared inline in bzlib.c and extern in
bzlib_private.h. The linker claims that the symbol is undefined.
This can be solved by removing the R_INLINE keyword. I can't see
another solution, and reading these guidelines on inlining
( http://www.greenend.org.uk/rjk/2003/03/inline.html ) leaves me no
wiser.
2) IEEE arithmetic
The standalone math library fails to compile, as the compiler chokes on
the definition of ML_POSINF, ML_NEGINF and ML_NAN, e.g.
> cc-1195 cc: ERROR File = mlutils.c, Line = 130
> The indicated floating-point operation result is...
2010 Oct 20
0
Increased memory usage between 4.8 and 5.5
...-2.3.4.so
0000002aa4b61000 4 - - - r---- libnss_dns-2.3.4.so
0000002aa4b62000 4 - - - rw--- libnss_dns-2.3.4.so
This seems to be explained by an increase in ELF_MAXPAGESIZE between the
two releases according to this page:
http://www.greenend.org.uk/rjk/2009/dataseg.html
Another oddity I found that was only in centos 5.5 was a lot of heap
memory being marked as Private_Dirty according to /proc/<pid>/smaps:
2b37c9826000-2b37cc4ca000 rw-p 2b37c9826000 00:00 0 [heap]
Size: 45712 kB
Rss: 45424 kB
Shared_Clean:...
2009 Mar 21
0
Bug#520641: Cannot create HVM domain
...manage Debian XEN virtual servers
ii xen-utils-3.2- 3.2.1-2 XEN administrative tools
ii xen-utils-comm 3.2.0-2 XEN administrative tools - common files
ii xenstore-utils 3.2.1-2 Xenstore utilities for Xen
$ really /usr/sbin/xm dmesg | grep -i hvm
(XEN) HVM: VMX enabled
ttfn/rjk
2014 Sep 04
4
[LLVMdev] Conditions that cause Clang refuse inlining a function
Hi,
I want to have some functions in my code inline so I use the *inline *
keyword:
*inline void foo() {}*
On some functions the compiler inlines the function but it fails to do so
on other functions and thus I get a linkage error:
*error: undefined reference to 'foo'*
What are the conditions that make the compiler refuse inline?
Thanks,
David
p.s. I know that there are ways to pass
2009 Nov 12
2
Sieve and ACL problem
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hi,
I've come across a problem that I can't figure out. I'm using Dovecot
1.2.6 and Sieve 0.1.13.
I'm using the following sieve script to sort my incoming mail.
require ["fileinto", "envelope"];
if envelope :all :is "from" "sopprde at newport.th.gov.bc.ca" {
fileinto
2007 May 25
5
rails adoption questions
For my thesis I''m constructing a questionnaire and I would like to
know your opinion about it and perhaps additional questions. The
research will focus on the adoption factors and demographic
characteristics of companies using rails. So if you happen to know
good questions, or think they''re inappropriate, let me know.
I''ll start off:
Organizational
1. What is your
2009 Aug 11
19
[Bug 1632] New: [PATCH] UTF-8 hint sftp-server extension
https://bugzilla.mindrot.org/show_bug.cgi?id=1632
Summary: [PATCH] UTF-8 hint sftp-server extension
Product: Portable OpenSSH
Version: 5.2p1
Platform: All
OS/Version: Linux
Status: NEW
Severity: enhancement
Priority: P2
Component: sftp-server
AssignedTo: unassigned-bugs at mindrot.org
2003 Jun 21
1
Details of local copy
I see in the manpage that if rsync is used to copy files locally, "it
behaves like an improved copy command". I was hoping for more details on
what that means.
Here's the specific situation I'm wondering about. I have some files that
are stored in two different locations on the same server. I could rsync
the files from the remote server twice, first to one location and then