Re: [dev] Conference in Munich?

2014-11-08 Thread FRIGN
On Sat, 8 Nov 2014 22:44:46 +0100 koneu wrote: > The only real problem is Claus Weselsky. Who's the maintainer of the > suckless hitlist again? I'd like to submit a patch... I am. Just send me a name and I'll let you know my decision on it. -- FRIGN

Re: [dev] Conference in Munich?

2014-11-08 Thread koneu
patrick295767 patrick295767 wrote: > Munich would be the perfect location indeed. The only real problem is Claus Weselsky. Who's the maintainer of the suckless hitlist again? I'd like to submit a patch...

Re: [dev] Conference in Munich?

2014-11-08 Thread patrick295767 patrick295767
Hi, Munich would be the perfect location indeed. I think that for getting lectures,talks..., it would not be so much difficult. There are quite a lot of participants, but of course the fees, the trip cost, accomodation cost,... are sometimes some important limitations. Greetings 2014-11-08 3:39

Re: [dev] [sbase][patch] new expr

2014-11-08 Thread Evan Gates
On Sat, Nov 8, 2014 at 5:53 AM, Dimitris Papastamos wrote: > Is the manpage still relevant or do we need to strip out certain bits? The only thing currently missing is taking into account LC_COLLATE when doing string comparisons.

[dev] [abduco] [patch] more descriptive execvp error message

2014-11-08 Thread Brandon Mulcahy
By default abduco attempts to launch dvtm if `abduco -c` is run with no command argument. I didn't have dvtm installed, so the resulting error message was: server-execvp: No such file or directory My first thought was that abduco was implicitly relying on a program called 'server-execvp'.

Re: [dev] fsbm

2014-11-08 Thread Dimitris Papastamos
On Sat, Nov 08, 2014 at 10:07:38AM -0500, random...@fastmail.us wrote: > On Fri, Nov 7, 2014, at 05:11, Dimitris Papastamos wrote: > > It is generally unlikely that the string has been validated to > > be an integer before getting to atoi(). With atoi() you cannot > > distinguish between an invali

Re: [dev] fsbm

2014-11-08 Thread random832
On Fri, Nov 7, 2014, at 05:11, Dimitris Papastamos wrote: > It is generally unlikely that the string has been validated to > be an integer before getting to atoi(). With atoi() you cannot > distinguish between an invalid integer and 0. > > Generally speaking, it should never be used. What if you

Re: [dev] fsbm

2014-11-08 Thread random832
On Fri, Nov 7, 2014, at 02:03, k...@shike2.com wrote: > I disagree, check the size before of calling strcpy. If you want to > avoid security risk you also have to check the output of strlcpy > to detect truncations, so you don't win anything. In both cases > you have to add a comparision, so it is

Re: [dev] [sbase][patch] new expr

2014-11-08 Thread Dimitris Papastamos
On Fri, Nov 07, 2014 at 06:06:50PM -0800, Evan Gates wrote: > I fixed a few bugs and tried to sbaseify the new expr. I've attached a > patch. Please let me know if I need to make any more changes. Is the manpage still relevant or do we need to strip out certain bits?

Re: [dev] [sbase][patch] sbase-box: return exit status of command

2014-11-08 Thread Dimitris Papastamos
On Fri, Nov 07, 2014 at 02:20:10PM -0800, Evan Gates wrote: > Noticed that sbase-box always exits with status 0, here's a patch to fix it. Applied, thanks!