Re: [hackers] [sbase] [PATCH v2] mount: fix mount helper fs option handling

2016-02-11 Thread Dimitris Papastamos
On Thu, Feb 11, 2016 at 12:41:33AM -0600, Brad Barden wrote: > + if (strlcat(fsopts, EARGF(usage()), sizeof(fsopts)) > > sizeof(fsopts)) > + eprintf("option string too long\n"); Thanks for the patch. The conditional should be >= sizeof(fsopts). Can you resend

[hackers] [ubase] mount: fix mount helper fs option handling || Brad Barden

2016-02-11 Thread git
commit 4dbd00fc948efef8e8bbe4d52189e98701227948 Author: Brad Barden AuthorDate: Thu Jan 28 15:53:36 2016 -0600 Commit: sin CommitDate: Thu Feb 11 10:16:41 2016 + mount: fix mount helper fs option handling If a mount helper is used,

[hackers] [ubase] LICENSE: update year and bump to top || Hiltjo Posthuma

2016-02-11 Thread git
commit 4ece17d605c3a6c508639238b30f8f3f7dddb2f4 Author: Hiltjo Posthuma AuthorDate: Wed Jan 6 19:00:19 2016 +0100 Commit: sin CommitDate: Thu Feb 11 10:16:41 2016 + LICENSE: update year and bump to top diff --git a/LICENSE b/LICENSE index

Re: [hackers] [sbase] [PATCH v2] mount: fix mount helper fs option handling

2016-02-11 Thread Dimitris Papastamos
On Thu, Feb 11, 2016 at 04:11:27AM -0600, Brad Barden wrote: > > The conditional should be >= sizeof(fsopts). Can you resend with the > > updated code? > > Good catch, thank you. Updated patch on the way. I'll get the hang of > threading these things one day. :\ Thanks, applied with a minor

[hackers] [slock] update copyright year in -v output || Markus Teich

2016-02-11 Thread git
commit f6582b68b03fe25fe0296b685af6b5924cca7df9 Author: Markus Teich AuthorDate: Thu Feb 11 16:26:12 2016 +0100 Commit: Markus Teich CommitDate: Thu Feb 11 16:26:12 2016 +0100 update copyright year in -v output diff --git

[hackers] [ubase] Use estrlcat where possible || FRIGN

2016-02-11 Thread git
commit 4c33cf2a98312a2947c365f7cfbff29615efe2a5 Author: FRIGN AuthorDate: Thu Feb 11 15:25:23 2016 +0100 Commit: sin CommitDate: Thu Feb 11 14:36:54 2016 + Use estrlcat where possible diff --git a/mount.c b/mount.c index 2a7773e..2eb175c 100644 ---

[hackers] [slock] remove .hgtags || Markus Teich

2016-02-11 Thread git
commit 32149e404383d979edf58b878cff9c5d8a935259 Author: Markus Teich AuthorDate: Thu Feb 11 16:22:34 2016 +0100 Commit: Markus Teich CommitDate: Thu Feb 11 16:22:34 2016 +0100 remove .hgtags diff --git a/.hgtags b/.hgtags

[hackers] [slock] prepare 1.3 release || Markus Teich

2016-02-11 Thread git
commit bfafc91da7b51be4e1543b64ee118fff2e3a4cfb Author: Markus Teich AuthorDate: Thu Feb 11 16:23:48 2016 +0100 Commit: Markus Teich CommitDate: Thu Feb 11 16:23:48 2016 +0100 prepare 1.3 release diff --git a/LICENSE b/LICENSE

[hackers] [sbase] [PATCH v3] mount: fix mount helper fs option handling

2016-02-11 Thread Brad Barden
If a mount helper is used, only argopts (given on commandline) are passed to the helper via -o parameter. Option strings from fstab are ignored. This patch replaces global argopts pointer with a character array fsopts. A maximum length for filesytem options is #defined (used by fsopts and data),

Re: [hackers] [sbase] [PATCH v2] mount: fix mount helper fs option handling

2016-02-11 Thread Brad Barden
> The conditional should be >= sizeof(fsopts). Can you resend with the > updated code? Good catch, thank you. Updated patch on the way. I'll get the hang of threading these things one day. :\

[hackers] [sbase] Fix pathchk manpage regarding exit status || sin

2016-02-11 Thread git
commit 73c8dfafe99d8a45b8652b284b97c5d80bf5b1c5 Author: sin AuthorDate: Thu Feb 11 10:04:54 2016 + Commit: sin CommitDate: Thu Feb 11 10:09:38 2016 + Fix pathchk manpage regarding exit status Also, rename _attr to st. diff --git

Re: [hackers] [ubase] mount: fix mount helper fs option handling || Brad Barden

2016-02-11 Thread FRIGN
On Thu, 11 Feb 2016 11:16:47 +0100 (CET) g...@suckless.org wrote: > + if (strlcat(fsopts, EARGF(usage()), sizeof(fsopts)) >= > sizeof(fsopts)) > + if (strlcat(fsopts, me->mnt_opts, > sizeof(fsopts)) >= sizeof(fsopts)) Use estrlcat() instead.

[hackers] [slock] Update license year || FRIGN

2016-02-11 Thread git
commit c28ac1ebf16e5d10a8e0416065e7e3980be1ca5c Author: FRIGN AuthorDate: Thu Feb 11 16:30:52 2016 +0100 Commit: FRIGN CommitDate: Thu Feb 11 16:30:52 2016 +0100 Update license year It actually was 2014 and not 2015. diff --git a/LICENSE

[hackers] [slock] add slock.1 man page || Markus Teich

2016-02-11 Thread git
commit 6a52a85a1ac87b29048863d599a8b0f0ee712482 Author: Markus Teich AuthorDate: Thu Feb 11 16:49:59 2016 +0100 Commit: Markus Teich CommitDate: Thu Feb 11 16:51:12 2016 +0100 add slock.1 man page diff --git a/Makefile

[hackers] [slock] Add myself to License || FRIGN

2016-02-11 Thread git
commit 6adeb1281e7df28777e304877059f4636c1389f3 Author: FRIGN AuthorDate: Thu Feb 11 16:28:41 2016 +0100 Commit: FRIGN CommitDate: Thu Feb 11 16:28:41 2016 +0100 Add myself to License forgot that a while ago diff --git a/LICENSE b/LICENSE

Re: [hackers] [slock] update copyright year in -v output || Markus Teich

2016-02-11 Thread Dimitris Papastamos
On Thu, Feb 11, 2016 at 04:24:04PM +0100, g...@suckless.org wrote: > commit f6582b68b03fe25fe0296b685af6b5924cca7df9 > Author: Markus Teich > AuthorDate: Thu Feb 11 16:26:12 2016 +0100 > Commit: Markus Teich > CommitDate: Thu Feb 11

[hackers] [slock] Don't forget the E-Mail || FRIGN

2016-02-11 Thread git
commit aa6a3853412fe001b77d3ef42b450b9ae48aa34c Author: FRIGN AuthorDate: Thu Feb 11 16:29:26 2016 +0100 Commit: FRIGN CommitDate: Thu Feb 11 16:29:26 2016 +0100 Don't forget the E-Mail diff --git a/LICENSE b/LICENSE index 4067142..0292d91 100644 ---

[hackers] [sbase] Minor cleanup for pathchk(1) || sin

2016-02-11 Thread git
commit efabd56535a00456434b909ce5709866a910a28c Author: sin AuthorDate: Thu Feb 11 10:00:00 2016 + Commit: sin CommitDate: Thu Feb 11 10:01:58 2016 + Minor cleanup for pathchk(1) diff --git a/pathchk.c b/pathchk.c index 780490c..6bf4d11 100644

[hackers] [sbase] Add pathchk(1) || Mattias Andrée

2016-02-11 Thread git
commit b445614f7021c76902ad2ed41e4d3d0087b04e98 Author: Mattias Andrée AuthorDate: Wed Feb 3 20:12:26 2016 +0100 Commit: sin CommitDate: Thu Feb 11 10:01:58 2016 + Add pathchk(1) New command, including man page. UTF-8 compatible and