Re: grep \

2011-07-20 Thread hyjial
2011/7/18 Ted Unangst : > On Mon, Jul 18, 2011, Alexander Bluhm wrote: >> On Sun, Jul 17, 2011 at 11:43:03AM -0400, Ted Unangst wrote: >>> I recently learned that our grep does not support the \<\> syntax for >>> word boundaries, only the somewhat more difficult to use [[:<:]] format. >>> It's fair

Re: sync adduser with installer

2010-10-29 Thread hyjial
d lead to at least the appended change to the manpage. This is a minimal fix. The very feature of removing the group might not be that relevant, then. This might look silly to these who know but why are there two programs to do the same thing (save the useradd is not interactive) ? Cheers. hyj

Re: Bug in gcc 3?

2010-06-01 Thread Hyjial Irldar
+= has lower priority than (+= and = have the same priority, in fact) == thus i += 1 == 2 means i += ( 1 == 2), which is i += 0 -> i == 1 Cheers ! hyjial

typos in src/lib/libc/stdlib/getopt_long.c

2010-04-22 Thread Hyjial Irldar
Hi again ! The appended diff corrects two typos in comments. Cheers ! hyjial. Index: getopt_long.c === RCS file: /cvs/src/lib/libc/stdlib/getopt_long.c,v retrieving revision 1.23 diff -u getopt_long.c --- getopt_long.c 31

REPLACE_GETOPT in src/lib/libc/stdlib/getopt_long.c

2010-04-22 Thread Hyjial Irldar
the said symbol. Cheers ! hyjial. Index: getopt_long.c === RCS file: /cvs/src/lib/libc/stdlib/getopt_long.c,v retrieving revision 1.23 diff -u getopt_long.c --- getopt_long.c B B B 31 Oct 2007 12:34:57 - B B B 1.23

Re: installboot(8) and fdisk(8) discrepancy in extended partition handling.

2009-09-03 Thread Hyjial Irldar
Hi ! After investigating a bit further the issue, I believe that the appended patch makes installboot(8) behave correctly. I removed extended partition numbering, since in would always print '1'. Last hunk is merely a typo fix. Comments are welcome. Cheers, hyjial. Index: ins

Minor changes to getopt_long.c

2009-06-26 Thread Hyjial Irldar
ssigns what is indexed by the cstart variable to itself : when the last iteration begins, pos will have been incremented nnonopts times by nopts and decremented nopts times by nnonopts. The global move is nil. I hope this might be of some use. Cheers, hyjial. P.S. : while here I realize I hav

Fix comments in i386 and amd64 mbr.S

2009-06-20 Thread Hyjial Irldar
For the sake of accuracy and coherence. Index: mbr.S === RCS file: /cvs/openbsd/src/sys/arch/i386/stand/mbr/mbr.S,v retrieving revision 1.21 diff -u -t -r1.21 mbr.S --- mbr.S 25 Jun 2007 14:10:17 - 1.21 +++ mbr.S

Re: cksum(1) patch

2009-05-12 Thread Hyjial Irldar
``man 1 cksum'' already does that for you. 2009/5/11 Peter J. Philipp : > Hi, > > I did some research on different operating systems regarding checksumming and > found that solaris had a nice option called "digest -l" which prints the > available algorithms and exits. B I wrote this functionality