On Mon, Aug 24, 2015 at 01:45:35PM +1000, Jonathan Gray wrote:
> On Mon, Aug 24, 2015 at 03:15:51AM +0300, Dmitry Alenichev wrote:
> > Index: azalia.h
> > ===
> > RCS file: /cvs/src/sys/dev/pci/azalia.h,v
> > retrieving revision 1.63
>
On Mon, Aug 24, 2015 at 03:15:51AM +0300, Dmitry Alenichev wrote:
> Index: azalia.h
> ===
> RCS file: /cvs/src/sys/dev/pci/azalia.h,v
> retrieving revision 1.63
> diff -u -p -r1.63 azalia.h
> --- azalia.h 20 Aug 2015 06:44:06 -
On Sun, Aug 23, 2015 at 03:29:46PM -0700, patrick keshishian wrote:
> On 8/23/15, Caspar Schutijser wrote:
> > Patch below.
> >
> > Thanks,
> > Caspar Schutijser
> >
> >
> > Index: sys/kern/kern_tame.c
> > ===
> > RCS file: /cvs/src/s
On Sun, Aug 23, 2015 at 06:07:46PM -0300, Rafael Zalamena wrote:
> I just fixed a bug which allowed people to cheat in worm(6). This bug was
> found out by deraadt@ when peer reviewing the mail thread in tech@
> 'Fwd: worm.c removing unused variables'.
>
> To reproduce the bug simply hold spacebar
Diff below switches restore(8) to using utimensat() instead of utimes() so
that file timestamps are restored with full nanosecond precision.
Eliminates some pointless divisions...
ok?
Index: dirs.c
===
RCS file: /cvs/src/sbin/re
Index: azalia.h
===
RCS file: /cvs/src/sys/dev/pci/azalia.h,v
retrieving revision 1.63
diff -u -p -r1.63 azalia.h
--- azalia.h20 Aug 2015 06:44:06 - 1.63
+++ azalia.h24 Aug 2015 00:15:01 -
@@ -512,6 +512,7 @@
#def
On 08/24/15 00:29, patrick keshishian wrote:
On 8/23/15, Caspar Schutijser wrote:
Patch below.
Thanks,
Caspar Schutijser
Index: sys/kern/kern_tame.c
===
RCS file: /cvs/src/sys/kern/kern_tame.c,v
retrieving revision 1.25
diff -u
Apologies, my eyes failed me on this.
On 8/23/15, patrick keshishian wrote:
> On 8/23/15, Caspar Schutijser wrote:
>> Patch below.
>>
>> Thanks,
>> Caspar Schutijser
>>
>>
>> Index: sys/kern/kern_tame.c
>> ===
>> RCS file: /cvs/src/
On 8/23/15, Caspar Schutijser wrote:
> Patch below.
>
> Thanks,
> Caspar Schutijser
>
>
> Index: sys/kern/kern_tame.c
> ===
> RCS file: /cvs/src/sys/kern/kern_tame.c,v
> retrieving revision 1.25
> diff -u -p -r1.25 kern_tame.c
> --- s
Patch below.
Thanks,
Caspar Schutijser
Index: sys/kern/kern_tame.c
===
RCS file: /cvs/src/sys/kern/kern_tame.c,v
retrieving revision 1.25
diff -u -p -r1.25 kern_tame.c
--- sys/kern/kern_tame.c23 Aug 2015 19:32:20 -
I just fixed a bug which allowed people to cheat in worm(6). This bug was
found out by deraadt@ when peer reviewing the mail thread in tech@
'Fwd: worm.c removing unused variables'.
To reproduce the bug simply hold spacebar and your worm won't move.
Highlights:
* Use the unused time variables to
On Sun, Aug 23, 2015 at 07:38:15AM -0400, Ted Unangst wrote:
> Theo Buehler wrote:
> > @@ -401,9 +401,10 @@ checkdot(char **argv)
> > else
> > p = *t;
> >
> > - if (ISDOT(p)) {
> > + if (ISDOT(p) || *p == '\0') {
> > if (!com
Theo Buehler wrote:
> In episode 103 of BSD Now, Bryan Cantrill talks about the fact that
> on illumos "rm -rf /" is an error. It turns out that this behavior
> is mandated by POSIX 1003.1-2013:
>
> "If either of the files dot or dot-dot are specified as the basename
> portion of an operand (that
The clear(1) manpage is linked to the tput(1) manpage, but the clear
utility is only mentioned in the history section. I suggest to make its
appearance in the manual page a little more prominent.
Index: tput.1
===
RCS file: /var/cvs/
On Sun, 23 Aug 2015 19:21:42 +1000
Steven McDonald wrote:
> Also, section 6.9.1 clause 9 of C99[0] says that "each parameter has
> automatic storage duration", so I think it's not safe to rely on a
> function parameter still being a valid object outside of openpartition
> (please correct me if I'
The openpartition function in tunefs(8) will currently set devicep, a
char** passed in from main, to the path it attempted to opendev(3).
This doesn't actually work as intended; it should be setting the value
devicep points to instead of devicep itself.
Also, section 6.9.1 clause 9 of C99[0] says
In episode 103 of BSD Now, Bryan Cantrill talks about the fact that
on illumos "rm -rf /" is an error. It turns out that this behavior
is mandated by POSIX 1003.1-2013:
"If either of the files dot or dot-dot are specified as the basename
portion of an operand (that is, the final pathname componen
Hi,
Below is a diff to avoid masking errno from DIOCMAP in opendev(3). The
intention of the existing code appears to be to try using path as a
device name rather than a DUID in case of failure, but as far as I can
tell, this is only desirable if DIOCMAP returns ENOENT anyway. Other
kinds of error
18 matches
Mail list logo