Re: JavaHL, 1.9: "Bad file descriptor", "Stream doesn't support this capability" errors

2015-08-14 Thread Marc Strapetz
On 14.08.2015 00:20, Branko Čibej wrote: On 13.08.2015 13:32, Marc Strapetz wrote: On 27.07.2015 09:21, Branko Čibej wrote: On 27.07.2015 09:17, Marc Strapetz wrote: One of our 1.9 (early-access) users is reporting problems when performing remote commands, for example a copy URL->URL: org.apa

Re: JavaHL, 1.9: "Bad file descriptor", "Stream doesn't support this capability" errors

2015-08-14 Thread Philip Martin
Marc Strapetz writes: > It's reproducible with an empty repository on the server (just > initialized with svnadmin) and a local repository which has been > prepared for the initial import: > > C:\temp\svn> svn status -v > 00 ? . > A- ? ?

Re: JavaHL, 1.9: "Bad file descriptor", "Stream doesn't support this capability" errors

2015-08-14 Thread Philip Martin
Philip Martin writes: > That's the apr_poll() call in data_available_handler_apr() failing, and > E09 could be EBADF. Perhaps E09 is not EBADF on Windows? Looking on Google I find Error Code 9: The storage control block address is invalid. [ERROR_INVALID_BLOCK (0x9)] I don't know wh

Re: bash_completion - subversion add: svn ls/merge ^/

2015-08-14 Thread Julian Foad
On 12 August 2015, Christian Ferbar wrote: > with this patch > > svn ls ^/ and svn merge ^/ > > will list the remote directories. > > to get "svn ls ^/" to autocomplete the path export SVN_BASH_COMPL_EXT=urls > has to be set, I don't know why this check is only in ls ... Thank you, Chris. This is

Re: bash_completion - subversion add: svn ls/merge ^/

2015-08-14 Thread Julian Foad
I (Julian Foad) wrote: > [1] It currently adds a space after 'branches/', which we should > suppress like this: > > @@ -440,6 +450,7 @@ _svn() > elif [[ "$here" == */trunk* ]] ; then ># we guess that it is a merge from a branch >COMPREPLY=( $(compgen -W ${here/\/tru

Apache Subversion 1.7.22 released

2015-08-14 Thread Stefan Sperling
I'm happy to announce the release of Apache Subversion 1.7.22. Please choose the mirror closest to you by visiting: http://subversion.apache.org/download/#supported-releases This release repairs the regression test suite which was broken in 1.7.21. It is otherwise identical to 1.7.21. There i

Re: Review of sizeof usage

2015-08-14 Thread Branko Čibej
On 14.08.2015 01:25, Daniel Shahaf wrote: > Branko Čibej wrote on Wed, Aug 12, 2015 at 10:07:49 +0200: >> On 12.08.2015 00:31, Daniel Shahaf wrote: > We have had problems with both styles in the past, so neither is immune > to bugs. I prefer the explicit type as it is easier to grep.