Re: [PATCH] Fix typo in faq-programming.xml

2022-10-27 Thread Hamish McIntyre-Bhatty
On 27/10/2022 12:32, Corinna Vinschen wrote: On Oct 26 14:26, Hamish McIntyre-Bhatty wrote: From: Hamish McIntyre-Bhatty --- winsup/doc/faq-programming.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/winsup/doc/faq-programming.xml b/winsup/doc/faq-programming.xml

Re: [PATCH] Fix typo in faq-programming.xml

2022-10-27 Thread Corinna Vinschen
On Oct 26 14:26, Hamish McIntyre-Bhatty wrote: > From: Hamish McIntyre-Bhatty > > --- > winsup/doc/faq-programming.xml | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/winsup/doc/faq-programming.xml b/winsup/doc/faq-programming.xml > index c2c4004c1..7945b6b88 100644 >

[PATCH] Fix typo in faq-programming.xml

2022-10-26 Thread Hamish McIntyre-Bhatty
From: Hamish McIntyre-Bhatty --- winsup/doc/faq-programming.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/winsup/doc/faq-programming.xml b/winsup/doc/faq-programming.xml index c2c4004c1..7945b6b88 100644 --- a/winsup/doc/faq-programming.xml +++

Re: [PATCH] Fix typo in faq-programming.xml

2022-10-26 Thread Hamish McIntyre-Bhatty
in some way? No, but by email is usually simple by using `git format-patch' and `git send-email'. This is a simple one-line patch to fix a typo I noticed in the programming FAQ. Patch follows below. I follow the list via GMANE, but to make sure I see any replies, it's probably best to reply to cygwin

Re: [PATCH] Fix typo in faq-programming.xml

2022-10-26 Thread Corinna Vinschen
o, but by email is usually simple by using `git format-patch' and `git send-email'. > This is a simple one-line patch to fix a typo I noticed in the programming > FAQ. Patch follows below. I follow the list via GMANE, but to make sure I > see any replies, it's probably best to reply to cy

[PATCH] Fix typo in faq-programming.xml

2022-10-25 Thread Hamish McIntyre-Bhatty
Hi there, This is my first time submitting a patch over email, so hopefully I'll get it right. Are there eventually plans for submitting merge requests directly with git in some way? This is a simple one-line patch to fix a typo I noticed in the programming FAQ. Patch follows below. I

Re: [PATCH 2/2] typo: that -> than

2022-10-08 Thread Jon Turney
On 07/10/2022 18:26, Chad Dougherty wrote: Signed-off-by: Chad Dougherty --- contrib.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib.html b/contrib.html index d5024694..04dc9726 100755 --- a/contrib.html +++ b/contrib.html @@ -132,7 +132,7 @@ in git

[PATCH 2/2] typo: that -> than

2022-10-07 Thread Chad Dougherty
Signed-off-by: Chad Dougherty --- contrib.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib.html b/contrib.html index d5024694..04dc9726 100755 --- a/contrib.html +++ b/contrib.html @@ -132,7 +132,7 @@ in git format-patch format. git format-patch

Re: Typo in ?

2022-07-06 Thread Ken Brown
On 7/6/2022 11:57 AM, Lavrentiev, Anton (NIH/NLM/NCBI) [C] via Cygwin wrote: However, discussing this shows how irrelevant the actual default value of FD_SETSIZE is. Correct, yet the comments in the header files (along with used values) should be consistent :-) I'll make the changes that

Re: Typo in ?

2022-07-06 Thread Lavrentiev, Anton (NIH/NLM/NCBI) [C] via Cygwin
> However, discussing this shows how irrelevant the actual default value > of FD_SETSIZE is. Correct, yet the comments in the header files (along with used values) should be consistent :-) > [...] to define FD_SETSIZE according to its requirements anyway. That'd work for CYGWIN right away;

Re: Typo in ?

2022-07-06 Thread Corinna Vinschen
On Jul 6 14:26, Lavrentiev, Anton (NIH/NLM/NCBI) [C] via Cygwin wrote: > > DESCRIPTION > >WARNING: select() can monitor only file descriptors numbers that > > are > >less than FD_SETSIZE (1024)-an unreasonably low limit for many > > modern > > Whoever wrote this, was wrong

Re: Typo in ?

2022-07-06 Thread Lavrentiev, Anton (NIH/NLM/NCBI) [C] via Cygwin
> DESCRIPTION >WARNING: select() can monitor only file descriptors numbers that are >less than FD_SETSIZE (1024)-an unreasonably low limit for many modern Whoever wrote this, was wrong (they might have never consulted the actual kernel code, or were just blindsided by

Re: Typo in ?

2022-07-06 Thread Corinna Vinschen
On Jul 6 16:15, Corinna Vinschen wrote: > On Jul 6 15:01, Jon Turney wrote: > > Remember that 64 is MAXIMUM_WAIT_OBJECTS for WaitForMultipleObjects(), the > > underlying Win32 API used to implement select(), so using more than 64 hits > > some complex code to work around that... > > This isn't

Re: Typo in ?

2022-07-06 Thread Lavrentiev, Anton (NIH/NLM/NCBI) [C] via Cygwin
> Remember that 64 is MAXIMUM_WAIT_OBJECTS for WaitForMultipleObjects(), > the underlying Win32 API used to implement select(), so using more than > 64 hits some complex code to work around that... True but the complex code (that involves thread spawning, if that's what you're referring to) will

Re: Typo in ?

2022-07-06 Thread Corinna Vinschen
On Jul 6 13:19, Lavrentiev, Anton (NIH/NLM/NCBI) [C] via Cygwin wrote: > > On Linux, select(2) is really only capable to > > handle file descriptors numbers up to descriptor number 1023, > > That is not true. While FD_SETSIZE is defined as a fixed constant, > Linux kernel does not actually

Re: Typo in ?

2022-07-06 Thread Corinna Vinschen
On Jul 6 15:01, Jon Turney wrote: > On 06/07/2022 08:42, Corinna Vinschen wrote: > > On Jul 5 17:51, Ken Brown wrote: > > > On 7/5/2022 10:13 AM, Lavrentiev, Anton (NIH/NLM/NCBI) [C] via Cygwin > > > wrote: > > > > I guess we can change FD_SETSIZE to 1024 as on Linux, albeit this has no > >

Re: Typo in ?

2022-07-06 Thread Jon Turney
On 06/07/2022 08:42, Corinna Vinschen wrote: On Jul 5 17:51, Ken Brown wrote: On 7/5/2022 10:13 AM, Lavrentiev, Anton (NIH/NLM/NCBI) [C] via Cygwin wrote: I guess we can change FD_SETSIZE to 1024 as on Linux, albeit this has no real meaning on Cygwin. On Linux, select(2) is really only

Re: Typo in ?

2022-07-06 Thread Lavrentiev, Anton (NIH/NLM/NCBI) [C] via Cygwin
> On Linux, select(2) is really only capable to > handle file descriptors numbers up to descriptor number 1023, That is not true. While FD_SETSIZE is defined as a fixed constant, Linux kernel does not actually "know" (or care) about it. So you can have an array of fd_sets, like this, in your

Re: Typo in ?

2022-07-06 Thread Corinna Vinschen
On Jul 5 17:51, Ken Brown wrote: > On 7/5/2022 10:13 AM, Lavrentiev, Anton (NIH/NLM/NCBI) [C] via Cygwin wrote: > > Hi, > > > > There's some inconsistency between and : > > > > sys/select.h has this: > > --- > > /* > > * Select uses bit masks of file descriptors in longs.

Re: Typo in ?

2022-07-05 Thread Ken Brown
On 7/5/2022 10:13 AM, Lavrentiev, Anton (NIH/NLM/NCBI) [C] via Cygwin wrote: Hi, There's some inconsistency between and : sys/select.h has this: --- /* * Select uses bit masks of file descriptors in longs. * These macros manipulate such bit fields (the filesystem

RE: Typo in ?

2022-07-05 Thread Lavrentiev, Anton (NIH/NLM/NCBI) [C] via Cygwin
> I'm no expert, but it seems the FD_SETSIZE should have been 128. > Long is 8 bytes, 64 bits. One bit if one open file, 64 * 64 = 4096. FD_SETSIZE is the file descriptor bitset capacity in _BITS_. 64 (as currently in there) means 1 int (on 64 bit platforms, or 2 ints on 32 bit platforms,

Re: Typo in ?

2022-07-05 Thread Andrey Repin
Greetings, Lavrentiev, Anton (NIH/NLM/NCBI) [C]! > There's some inconsistency between and : > sys/select.h has this: > --- > /* > * Select uses bit masks of file descriptors in longs. > * These macros manipulate such bit fields (the filesystem macros use chars). > *

Typo in ?

2022-07-05 Thread Lavrentiev, Anton (NIH/NLM/NCBI) [C] via Cygwin
Hi, There's some inconsistency between and : sys/select.h has this: --- /* * Select uses bit masks of file descriptors in longs. * These macros manipulate such bit fields (the filesystem macros use chars). * FD_SETSIZE may be defined by the user, but the default here *

[PATCH 2/2] Cygwin: Fix typo KERB_S4U_LOGON_FLAG_IDENTITY -> IDENTIFY

2022-04-12 Thread Jon Turney via Cygwin-patches
--- winsup/cygwin/sec_auth.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/winsup/cygwin/sec_auth.cc b/winsup/cygwin/sec_auth.cc index 0e5aaeb0b..2b1ce2203 100644 --- a/winsup/cygwin/sec_auth.cc +++ b/winsup/cygwin/sec_auth.cc @@ -1247,7 +1247,7 @@ typedef struct

[PATCH] Cygwin: Fix typo in new-features.xml

2021-12-02 Thread Takashi Yano
--- winsup/doc/new-features.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/winsup/doc/new-features.xml b/winsup/doc/new-features.xml index e05ffe38e..4fdfafc24 100644 --- a/winsup/doc/new-features.xml +++ b/winsup/doc/new-features.xml @@ -4,7 +4,7 @@ What's new and

Re: [PATCH] Cygwin: fhandler_mqueue::mq_open: fix typo

2021-05-26 Thread Corinna Vinschen
orinna > >From dfe5988f961ff97d283a9c460e75499db168163a Mon Sep 17 00:00:00 2001 > From: Ken Brown > Date: Wed, 26 May 2021 12:48:58 -0400 > Subject: [PATCH] Cygwin: fhandler_mqueue::mq_open: fix typo > > --- > winsup/cygwin/fhandler_mqueue.cc | 2 +- > 1 file change

[PATCH] Cygwin: fhandler_mqueue::mq_open: fix typo

2021-05-26 Thread Ken Brown
021 12:48:58 -0400 Subject: [PATCH] Cygwin: fhandler_mqueue::mq_open: fix typo --- winsup/cygwin/fhandler_mqueue.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/winsup/cygwin/fhandler_mqueue.cc b/winsup/cygwin/fhandler_mqueue.cc index 745c80643..d81880cba 100644 --- a/win

Re: [PATCH] Cygwin: spawn.cc: Fix typo in comment by commit 974e6d76.

2021-01-19 Thread Corinna Vinschen via Cygwin-patches
On Jan 19 03:45, Takashi Yano via Cygwin-patches wrote: > --- > winsup/cygwin/spawn.cc | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/winsup/cygwin/spawn.cc b/winsup/cygwin/spawn.cc > index 42044ab53..d03492ee6 100644 > --- a/winsup/cygwin/spawn.cc > +++

[PATCH] Cygwin: spawn.cc: Fix typo in comment by commit 974e6d76.

2021-01-18 Thread Takashi Yano via Cygwin-patches
--- winsup/cygwin/spawn.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/winsup/cygwin/spawn.cc b/winsup/cygwin/spawn.cc index 42044ab53..d03492ee6 100644 --- a/winsup/cygwin/spawn.cc +++ b/winsup/cygwin/spawn.cc @@ -636,7 +636,7 @@ child_info_spawn::worker (const char

[PATCH 1/3] fhandler_pty_slave::setup_locale: fix typo

2020-09-01 Thread Johannes Schindelin
Signed-off-by: Johannes Schindelin --- winsup/cygwin/fhandler_tty.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/winsup/cygwin/fhandler_tty.cc b/winsup/cygwin/fhandler_tty.cc index 6294e2c20..b3458595a 100644 --- a/winsup/cygwin/fhandler_tty.cc +++

Re: [PATCH] Cygwin: sigproc.cc: fix typo in comment describing nprocs

2020-08-28 Thread Corinna Vinschen
On Aug 27 18:40, Ken Brown via Cygwin-patches wrote: > nprocs is the number of children, not the number of deceased children. > The incorrect comment used to apply to a variable nzombies. The > latter was removed in commit 8cb359d9 in 2004, but the comment was > never updated. > --- >

[PATCH] Cygwin: sigproc.cc: fix typo in comment describing nprocs

2020-08-27 Thread Ken Brown via Cygwin-patches
nprocs is the number of children, not the number of deceased children. The incorrect comment used to apply to a variable nzombies. The latter was removed in commit 8cb359d9 in 2004, but the comment was never updated. --- winsup/cygwin/sigproc.cc | 2 +- 1 file changed, 1 insertion(+), 1

typo in package cloc-1.82, file /usr/bin/cloc, prevents its use

2019-11-30 Thread Al Danial
hi, I'm the author of https://github.com/AlDanial/cloc I helped a friend install CygWin a couple of days ago and was pleased to see a package for cloc included. I installed it but found that it fails to run because the pound-bang line of /usr/bin/cloc has been changed to #!/usr/bin/perl perl

[newlib-cygwin] Cygwin: fix typo

2019-02-02 Thread Corinna Vinschen
https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=49ea15ef17fda59cc279a59141c9b78cd9b9a3c1 commit 49ea15ef17fda59cc279a59141c9b78cd9b9a3c1 Author: Corinna Vinschen Date: Sat Feb 2 21:15:50 2019 +0100 Cygwin: fix typo Signed-off-by: Corinna Vinschen Diff: --- winsup

Re: [PATCH] fix version typo

2018-12-01 Thread Corinna Vinschen
On Nov 30 22:14, Mark Geisert wrote: > --- > winsup/doc/new-features.xml | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/winsup/doc/new-features.xml b/winsup/doc/new-features.xml > index e3786e545..7cc449764 100644 > --- a/winsup/doc/new-features.xml > +++

[newlib-cygwin] fix version typo

2018-12-01 Thread Corinna Vinschen
https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=166914ea8c86b5e569a5fef226e602a4d279897b commit 166914ea8c86b5e569a5fef226e602a4d279897b Author: Mark Geisert Date: Fri Nov 30 22:14:00 2018 -0800 fix version typo Diff: --- winsup/doc/new-features.xml | 2 +- 1 file changed, 1

[PATCH] fix version typo

2018-11-30 Thread Mark Geisert
--- winsup/doc/new-features.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/winsup/doc/new-features.xml b/winsup/doc/new-features.xml index e3786e545..7cc449764 100644 --- a/winsup/doc/new-features.xml +++ b/winsup/doc/new-features.xml @@ -4,7 +4,7 @@ What's new and

Re: perhaps not so minor typo in cygwin.com

2018-11-10 Thread cyg Simple
On 11/10/2018 3:20 AM, Corinna Vinschen wrote: On Nov 9 20:09, Denis Excoffier wrote: Hello, In http://cygwin.com, please modify: The most recent version of the Cygwin DLL is 2.11.0. into The most recent version of the Cygwin DLL is 2.11.2. Done. Thanks for the heads-up. I was going

Re: perhaps not so minor typo in cygwin.com

2018-11-10 Thread Corinna Vinschen
On Nov 9 20:09, Denis Excoffier wrote: > Hello, > > In http://cygwin.com, please modify: > > The most recent version of the Cygwin DLL is 2.11.0. > > into > > The most recent version of the Cygwin DLL is 2.11.2. Done. Thanks for the heads-up. Corinna -- Corinna Vinschen Cygwin

perhaps not so minor typo in cygwin.com

2018-11-09 Thread Denis Excoffier
Hello, In http://cygwin.com, please modify: The most recent version of the Cygwin DLL is 2.11.0. into The most recent version of the Cygwin DLL is 2.11.2. Thank you. Regards, Denis Excoffier. -- Problem reports: http://cygwin.com/problems.html FAQ:

[newlib-cygwin] CYgwin: fix typo in comment

2018-08-24 Thread Corinna Vinschen
https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=36cb95f6028d8e0f2c736a66a4189027aecd5566 commit 36cb95f6028d8e0f2c736a66a4189027aecd5566 Author: Corinna Vinschen Date: Fri Aug 24 13:36:06 2018 +0200 CYgwin: fix typo in comment Signed-off-by: Corinna Vinschen Diff

[newlib-cygwin] Cygwin: fix typo in accept on inet and local sockets

2018-03-26 Thread Corinna Vinschen
https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=cfe5d362fefe09a2601f9b3d5effc435da841de6 commit cfe5d362fefe09a2601f9b3d5effc435da841de6 Author: Corinna Vinschen <cori...@vinschen.de> Date: Mon Mar 26 17:21:30 2018 +0200 Cygwin: fix typo in accept on inet and local s

Re: [PATCH] doc/ntsec.xml: Fix typo

2018-02-22 Thread Corinna Vinschen
On Feb 22 13:36, David Macek wrote: > On 22. 2. 2018 12:04, Mark Geisert wrote: > > Been there, done that, even the "I'll have to try something else".  It's > > astounding how SeaMonkey, Pine, and probably gmane bork up the formatting > > of something that looks so benignly laid out to begin

Re: [PATCH] doc/ntsec.xml: Fix typo

2018-02-22 Thread Corinna Vinschen
On Feb 22 03:04, Mark Geisert wrote: > On Thu, 22 Feb 2018, David Macek wrote: > > On 2018-02-21 14:05, Corinna Vinschen wrote: > > > The patch is malformed. It claims to contain 7 lines (6 lines context, > > > one line changed), but actually it has only 4 lines context. Please > > > check your

Re: [PATCH] doc/ntsec.xml: Fix typo

2018-02-22 Thread David Macek
On 22. 2. 2018 12:04, Mark Geisert wrote: Been there, done that, even the "I'll have to try something else".  It's astounding how SeaMonkey, Pine, and probably gmane bork up the formatting of something that looks so benignly laid out to begin with. After much experience putting up with these

Re: [PATCH] doc/ntsec.xml: Fix typo

2018-02-22 Thread Mark Geisert
On Thu, 22 Feb 2018, David Macek wrote: On 2018-02-21 14:05, Corinna Vinschen wrote: The patch is malformed. It claims to contain 7 lines (6 lines context, one line changed), but actually it has only 4 lines context. Please check your git settings. On 21. 2. 2018 22:56, Brian Inglis wrote:

Re: [PATCH] doc/ntsec.xml: Fix typo

2018-02-21 Thread David Macek
On 2018-02-21 14:05, Corinna Vinschen wrote: The patch is malformed. It claims to contain 7 lines (6 lines context, one line changed), but actually it has only 4 lines context. Please check your git settings. On 21. 2. 2018 22:56, Brian Inglis wrote: I can see why you strenuously request

Re: [PATCH] doc/ntsec.xml: Fix typo

2018-02-21 Thread Brian Inglis
On 2018-02-21 14:37, Corinna Vinschen wrote: > On Feb 21 14:20, Brian Inglis wrote: >> On 2018-02-21 14:05, Corinna Vinschen wrote: >>> Hi David, >>> >>> On Feb 21 18:09, David Macek wrote: --- winsup/doc/ntsec.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)

Re: [PATCH] doc/ntsec.xml: Fix typo

2018-02-21 Thread Corinna Vinschen
On Feb 21 22:37, Corinna Vinschen wrote: > On Feb 21 14:20, Brian Inglis wrote: > > On 2018-02-21 14:05, Corinna Vinschen wrote: > > > Hi David, > > > > > > On Feb 21 18:09, David Macek wrote: > > >> --- > > >> winsup/doc/ntsec.xml | 2 +- > > >> 1 file changed, 1 insertion(+), 1 deletion(-) > >

[newlib-cygwin] doc/ntsec.xml: Fix typo

2018-02-21 Thread Corinna Vinschen
https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=a3b5795b06e0fb37b60aa8ba2d6ecf464feacb02 commit a3b5795b06e0fb37b60aa8ba2d6ecf464feacb02 Author: David Macek <david.mace...@gmail.com> Date: Wed Feb 21 18:09:47 2018 +0100 doc/ntsec.xml: Fix typo Diff: --- winsup/doc/nts

Re: [PATCH] doc/ntsec.xml: Fix typo

2018-02-21 Thread Corinna Vinschen
On Feb 21 14:20, Brian Inglis wrote: > On 2018-02-21 14:05, Corinna Vinschen wrote: > > Hi David, > > > > On Feb 21 18:09, David Macek wrote: > >> --- > >> winsup/doc/ntsec.xml | 2 +- > >> 1 file changed, 1 insertion(+), 1 deletion(-) > >> > >> diff --git a/winsup/doc/ntsec.xml

Re: [PATCH] doc/ntsec.xml: Fix typo

2018-02-21 Thread Brian Inglis
On 2018-02-21 14:05, Corinna Vinschen wrote: > Hi David, > > On Feb 21 18:09, David Macek wrote: >> --- >> winsup/doc/ntsec.xml | 2 +- >> 1 file changed, 1 insertion(+), 1 deletion(-) >> >> diff --git a/winsup/doc/ntsec.xml b/winsup/doc/ntsec.xml >> index df1d54930..03293591b 100644 >> ---

Re: [PATCH] doc/ntsec.xml: Fix typo

2018-02-21 Thread Corinna Vinschen
Hi David, On Feb 21 18:09, David Macek wrote: > --- > winsup/doc/ntsec.xml | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/winsup/doc/ntsec.xml b/winsup/doc/ntsec.xml > index df1d54930..03293591b 100644 > --- a/winsup/doc/ntsec.xml > +++ b/winsup/doc/ntsec.xml > @@

[PATCH] doc/ntsec.xml: Fix typo

2018-02-21 Thread David Macek
--- winsup/doc/ntsec.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/winsup/doc/ntsec.xml b/winsup/doc/ntsec.xml index df1d54930..03293591b 100644 --- a/winsup/doc/ntsec.xml +++ b/winsup/doc/ntsec.xml @@ -914,7 +914,7 @@ This is not valid: -Apart from this

[newlib-cygwin] winsup/doc/etc.postinstall.cygwin-doc.sh fix shell variable typo

2017-12-22 Thread Corinna Vinschen
sh fix shell variable typo Diff: --- winsup/doc/etc.postinstall.cygwin-doc.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/winsup/doc/etc.postinstall.cygwin-doc.sh b/winsup/doc/etc.postinstall.cygwin-doc.sh index 2873d93..935bd94 100755 --- a/winsup/doc/etc.postinstall.cygwin-

[PATCH 1/2] winsup/doc/etc.postinstall.cygwin-doc.sh fix shell variable typo

2017-12-22 Thread Brian Inglis
--- winsup/doc/etc.postinstall.cygwin-doc.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/winsup/doc/etc.postinstall.cygwin-doc.sh b/winsup/doc/etc.postinstall.cygwin-doc.sh index 2873d9395..935bd94e1 100755 --- a/winsup/doc/etc.postinstall.cygwin-doc.sh +++

Re: [PATCH] winsup/doc/etc.postinstall.cygwin-doc.sh fix shell variable typo

2017-12-21 Thread Corinna Vinschen
On Dec 20 19:26, Brian Inglis wrote: > On 2017-12-20 16:10, Eric Blake wrote: > > On 12/20/2017 05:01 PM, Brian Inglis wrote: > >> --- > >>   winsup/doc/etc.postinstall.cygwin-doc.sh | 2 +- > >>   1 file changed, 1 insertion(+), 1 deletion(-) > >> > >> diff --git

Re: [PATCH] winsup/doc/etc.postinstall.cygwin-doc.sh fix shell variable typo

2017-12-20 Thread Brian Inglis
On 2017-12-20 16:10, Eric Blake wrote: > On 12/20/2017 05:01 PM, Brian Inglis wrote: >> --- >>   winsup/doc/etc.postinstall.cygwin-doc.sh | 2 +- >>   1 file changed, 1 insertion(+), 1 deletion(-) >> >> diff --git a/winsup/doc/etc.postinstall.cygwin-doc.sh >>

Re: [PATCH] winsup/doc/etc.postinstall.cygwin-doc.sh fix shell variable typo

2017-12-20 Thread Eric Blake
On 12/20/2017 05:01 PM, Brian Inglis wrote: --- winsup/doc/etc.postinstall.cygwin-doc.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/winsup/doc/etc.postinstall.cygwin-doc.sh b/winsup/doc/etc.postinstall.cygwin-doc.sh index 2873d9395..935bd94e1 100755 ---

[PATCH] winsup/doc/etc.postinstall.cygwin-doc.sh fix shell variable typo

2017-12-20 Thread Brian Inglis
--- winsup/doc/etc.postinstall.cygwin-doc.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/winsup/doc/etc.postinstall.cygwin-doc.sh b/winsup/doc/etc.postinstall.cygwin-doc.sh index 2873d9395..935bd94e1 100755 --- a/winsup/doc/etc.postinstall.cygwin-doc.sh +++

Re: How to debug XWin starting only sometimes? (Typo removed)

2017-05-03 Thread Леон Майер
> The bad news is that neither .xsession-errors nor a log in /var/log/xwin/ are > produced in /var/log/xwin on an *unsuccessful* attempt. The bad news is that neither .xsession-errors in the home directory nor a log in /var/log/xwin/ are produced on an *unsuccessful* attempt. -- Problem

[newlib-cygwin] regex: Fix typo in CHaddrange

2016-11-24 Thread Corinna Vinschen
https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=1c545411720f11190e43eca59c0931402f5f62f8 commit 1c545411720f11190e43eca59c0931402f5f62f8 Author: Corinna Vinschen <cori...@vinschen.de> Date: Thu Nov 24 16:09:31 2016 +0100 regex: Fix typo in CHaddrange Sign

[newlib-cygwin] Fix typo in kill(1)

2016-11-24 Thread Corinna Vinschen
https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=9b01c29c0435e6cd52412cf59295b19921feeb61 commit 9b01c29c0435e6cd52412cf59295b19921feeb61 Author: Corinna Vinschen <cori...@vinschen.de> Date: Thu Nov 24 16:00:28 2016 +0100 Fix typo in kill(1) buf is just a local

[newlib-cygwin] Fix typo in release message

2016-08-16 Thread Corinna Vinschen
https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=de09bb4d322161805a8c4e130afa1012a9da7fdf commit de09bb4d322161805a8c4e130afa1012a9da7fdf Author: Corinna Vinschen <cori...@vinschen.de> Date: Tue Aug 16 11:22:26 2016 +0200 Fix typo in release message Sign

Re: [PATCH setup] README: Fixed mailing list address (typo)

2016-08-02 Thread Corinna Vinschen
On Aug 1 20:24, Ronald Ramos wrote: > commit 5d7c3beee3317926eb3256dd7a1bed8f55a6952b > Author: Ronald Ramos > Date: Mon Aug 1 20:21:47 2016 -0400 > > * README: Fixed which mailing list this app belongs to > > diff --git a/README b/README > index 9ad78b6..a05b18f

[PATCH setup] README: Fixed mailing list address (typo)

2016-08-01 Thread Ronald Ramos
commit 5d7c3beee3317926eb3256dd7a1bed8f55a6952b Author: Ronald Ramos Date: Mon Aug 1 20:21:47 2016 -0400 * README: Fixed which mailing list this app belongs to diff --git a/README b/README index 9ad78b6..a05b18f 100644 --- a/README +++ b/README @@ -70,7 +70,7 @@

[newlib-cygwin] Fix typo

2016-07-18 Thread Corinna Vinschen
https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=642c48095c50eba94527a03d68cc5084589073c1 commit 642c48095c50eba94527a03d68cc5084589073c1 Author: Corinna Vinschen <cori...@vinschen.de> Date: Mon Jul 18 22:03:37 2016 +0200 Fix typo Signed-off-by: Corinna Vinschen

[newlib-cygwin] Fix typo and wrong URL in winsup/README

2016-05-24 Thread Corinna Vinschen
https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=8d7b9a199c2100eba60db5d85681ea4f39be19d8 commit 8d7b9a199c2100eba60db5d85681ea4f39be19d8 Author: Corinna Vinschen <cori...@vinschen.de> Date: Tue May 24 10:25:18 2016 +0200 Fix typo and wrong URL in winsup/README

Re: [PATCH] fix typo in netinit/ip.h

2016-03-30 Thread Corinna Vinschen
On Mar 30 09:15, Peter Foley wrote: > The type for the ip_tos member was typoed, fix it. > > winsup/cygwin/ChangeLog: > include/netinet/ip.h: fix type of ip_tos Thanks for catching. Applied. Corinna -- Corinna Vinschen Please, send mails regarding Cygwin to Cygwin

[newlib-cygwin] fix typo in netinit/ip.h

2016-03-30 Thread Corinna Vinschen
https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=31dfc51a361fb96ea2a20e657076f842cac8790d commit 31dfc51a361fb96ea2a20e657076f842cac8790d Author: Peter Foley <pefol...@pefoley.com> Date: Wed Mar 30 09:15:55 2016 -0400 fix typo in netinit/ip.h The type for the

[PATCH] fix typo in netinit/ip.h

2016-03-30 Thread Peter Foley
The type for the ip_tos member was typoed, fix it. winsup/cygwin/ChangeLog: include/netinet/ip.h: fix type of ip_tos Signed-off-by: Peter Foley --- winsup/cygwin/include/netinet/ip.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

Pipes Again. (was: cmp (or echo) bug?) -- typo corrected

2016-01-02 Thread Houder
On 2016-01-02 12:58, Houder wrote: // replace O_RDONLY by O_RDWR for ./tstat <(cat > a) <(cat > b) should be: // replace O_RDONLY by O_RDWR for ./t_stat >(cat > a) >(cat > b) Henri -- Problem reports: http://cygwin.com/problems.html FAQ:

Re: setup.hint spelling/typo fixes

2015-10-23 Thread Achim Gratz
Jon Turney writes: > I fixed on cygwin.com various spelling errors or typos in setup.hint: […] > AG: perl-TimeDate: formating -> formatting That typo in the description is from upstream, it gets generated from the META information on CPAN. :-) http://api.metacpan.org/v0/release/Time

setup.hint spelling/typo fixes

2015-10-23 Thread Jon Turney
I fixed on cygwin.com various spelling errors or typos in setup.hint: Please update your local copy JA: apngdis: invividual -> individual YS: artikulate : pronounciation -> pronunciation YS: autoconf2.1: creattes -> creates JY: binutils: assember -> assembler MA: catdoc: charachers ->

Re: setup.hint spelling/typo fixes

2015-10-23 Thread Yaakov Selkowitz
On Fri, 2015-10-23 at 14:48 +0100, Jon Turney wrote: > I fixed on cygwin.com various spelling errors or typos in setup.hint: > > Please update your local copy Done, thanks! -- Yaakov

Re: Typo on rpcndr.h

2015-09-07 Thread Corinna Vinschen
On Sep 6 22:10, Alex Rocha wrote: > This is a simple one... Compiling Ruby on Cygwin came with the following > error: > > /usr/include/w32api/rpcndr.h:331:5: error: unknown type name > `GENERIB_BINDING_ROUTINE' > > > Just correct GENERIB_BINDING_ROUTINE to GENERIC_BINDING_ROUTINE. Sure

Typo on rpcndr.h

2015-09-06 Thread Alex Rocha
This is a simple one... Compiling Ruby on Cygwin came with the following error: /usr/include/w32api/rpcndr.h:331:5: error: unknown type name `GENERIB_BINDING_ROUTINE' Just correct GENERIB_BINDING_ROUTINE to GENERIC_BINDING_ROUTINE. Thank you. Alex -- Problem reports:

Typo in Cygwin/X User Guide

2015-08-19 Thread Ken Brown
The documentation for the compose key at http://x.cygwin.com/docs/ug/using-i18n.html#using-i18n-compose says to start the X server with the -xkboption option. This results in (EE) Fatal server error: (EE) Unrecognized option: -xkboption The correct option is -xkboptions. Ken -- Problem

Re: Typo in Cygwin/X User Guide

2015-08-19 Thread Jon TURNEY
On 19/08/2015 15:00, Ken Brown wrote: The documentation for the compose key at http://x.cygwin.com/docs/ug/using-i18n.html#using-i18n-compose says to start the X server with the -xkboption option. This results in (EE) Fatal server error: (EE) Unrecognized option: -xkboption The correct option

[newlib-cygwin] sec_acl.cc (set_posix_access): Fix typo in comment

2015-04-20 Thread Corinna Vinschen
https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=a024aa2f8fc402de5fdd49431a6329481cd84395 commit a024aa2f8fc402de5fdd49431a6329481cd84395 Author: Corinna Vinschen cori...@vinschen.de Date: Mon Apr 20 10:12:24 2015 +0200 sec_acl.cc (set_posix_access): Fix typo in comment

[newlib-cygwin] Fix typo in comment

2015-04-14 Thread Corinna Vinschen
https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=c7bd0c37781af176bb339738322b8202dc13a3d2 commit c7bd0c37781af176bb339738322b8202dc13a3d2 Author: Corinna Vinschen cori...@vinschen.de Date: Tue Apr 14 16:57:23 2015 +0200 Fix typo in comment Signed-off-by: Corinna

[newlib-cygwin] Fix typo in new fchmod implementation

2015-04-11 Thread Corinna Vinschen
https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=8ede2acefd1221f9af7c089f8ed4eaeea16409e9 commit 8ede2acefd1221f9af7c089f8ed4eaeea16409e9 Author: Corinna Vinschen cori...@vinschen.de Date: Sat Apr 11 16:03:18 2015 +0200 Fix typo in new fchmod implementation

Re: Fix typo

2015-03-12 Thread Corinna Vinschen
On Mar 12 20:30, Alexey Pavlov wrote: --- a/winsup/cygwin/include/cygwin/version.h +++ b/winsup/cygwin/include/cygwin/version.h @@ -467,7 +467,7 @@ details. */ putwc_unlocked, putwchar_unlocked. 284: Export sockatmark. 285: Export wcstold. - 285: Export cabsl,

[newlib-cygwin] Fix typo in include/cygwin/version.h

2015-03-12 Thread Corinna Vinschen
https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=63b41daeb6bca8dd380949e8a3b151a2681882c4 commit 63b41daeb6bca8dd380949e8a3b151a2681882c4 Author: Alexey Pavlov alex...@gmail.com Date: Thu Mar 12 18:48:59 2015 +0100 Fix typo in include/cygwin/version.h Signed-off

Fix typo

2015-03-12 Thread Alexey Pavlov
From 9c11fcf2fc74601eb48e8060b6575b56be111a02 Mon Sep 17 00:00:00 2001 From: Alexpux alexey.paw...@gmail.com Date: Thu, 12 Mar 2015 14:33:39 +0300 Subject: [PATCH] Fix typos. --- winsup/cygwin/include/cygwin/version.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git

Re: patch: typo fix in setup.exe

2014-10-13 Thread Eric Blake
On 10/10/2014 11:28 AM, Corinna Vinschen wrote: On Oct 10 10:40, Eric Blake wrote: ping On 09/27/2014 10:27 AM, Eric Blake wrote: Assuming this is the right place for this patch - something I noticed today, when I got an error message including the word thelist. 2014-09-27 Eric Blake

Re: patch: typo fix in setup.exe

2014-10-13 Thread Corinna Vinschen
On Oct 13 06:51, Eric Blake wrote: On 10/10/2014 11:28 AM, Corinna Vinschen wrote: On Oct 10 10:40, Eric Blake wrote: ping On 09/27/2014 10:27 AM, Eric Blake wrote: Assuming this is the right place for this patch - something I noticed today, when I got an error message including the

Re: patch: typo fix in setup.exe

2014-10-10 Thread Eric Blake
ping On 09/27/2014 10:27 AM, Eric Blake wrote: Assuming this is the right place for this patch - something I noticed today, when I got an error message including the word thelist. 2014-09-27 Eric Blake ebl...@redhat.com * res.rc: Fix missing space. Index: res.rc

Re: patch: typo fix in setup.exe

2014-10-10 Thread Corinna Vinschen
On Oct 10 10:40, Eric Blake wrote: ping On 09/27/2014 10:27 AM, Eric Blake wrote: Assuming this is the right place for this patch - something I noticed today, when I got an error message including the word thelist. 2014-09-27 Eric Blake ebl...@redhat.com * res.rc: Fix

libX11_6: 'dead_actute' typo in en_US UTF-8 Compose file

2014-10-07 Thread David Stacey
When I run Qt5 applications in Cygwin, the following warning is generated: Qt Warning - invalid keysym: dead_actute It appears that this is due to a typo in the en_US UTF-8 Compose file. When you rebuild libX11, please could you include the following patch: http://cgit.freedesktop.org

patch: typo fix in setup.exe

2014-09-27 Thread Eric Blake
Assuming this is the right place for this patch - something I noticed today, when I got an error message including the word thelist. 2014-09-27 Eric Blake ebl...@redhat.com * res.rc: Fix missing space. Index: res.rc ===

Re: Typo in snapshots /usr/include/cygwin/version.h

2014-07-15 Thread Corinna Vinschen
On Jul 15 02:12, Andrey Repin wrote: Greetings, All! + 273: Introduce account mapping from WIndows account DBs. Add CW_SETENT, ^ erroneous capital i. Fixed. Thanks, Corinna -- Corinna Vinschen Please, send mails

Typo in snapshots /usr/include/cygwin/version.h

2014-07-14 Thread Andrey Repin
Greetings, All! + 273: Introduce account mapping from WIndows account DBs. Add CW_SETENT, ^ erroneous capital i. -- WBR, Andrey Repin (anrdae...@yandex.ru) 15.07.2014, 02:11 Sorry for my terrible english... -- Problem reports:

typo correction in grp.cc

2014-06-06 Thread Denis Excoffier
Hello, The following patch (or equivalent) is needed in order for /usr/bin/id to return the full set of groups in case the user given as argument belongs to more than 10 groups: diff -uNr cygwin-snapshot-20140523-1.original/winsup/cygwin/grp.cc

typo correction (patch)

2014-05-26 Thread Denis Excoffier
Hello, I propose the following patch, in order to make getgrouplist() to produce a better result, in particular when the number of groups of a user is more than the first value used by coreutils/id (which is only 10). diff -uNr cygwin-snapshot-20140523-1.original/winsup/cygwin/grp.cc

Re: Cygserver diag typo?

2012-10-25 Thread Corinna Vinschen
On Oct 24 15:00, Lavrentiev, Anton (NIH/NLM/NCBI) [C] wrote: Hi, in the below piece of code from cygserver sources (bsd_helper.cc): if (p-gid == (gid_t)-1) log (LOG_WARNING,WARNING: Group not found in /etc/passwd! Using gid -1!); Wasn't /etc/passwd supposed to actually be

Cygserver diag typo?

2012-10-24 Thread Lavrentiev, Anton (NIH/NLM/NCBI) [C]
Hi, in the below piece of code from cygserver sources (bsd_helper.cc): if (p-gid == (gid_t)-1) log (LOG_WARNING,WARNING: Group not found in /etc/passwd! Using gid -1!); Wasn't /etc/passwd supposed to actually be mentioned as /etc/group? (I gather, it is a copy-n-paste thing from the code

typo in man xterm

2012-07-28 Thread Paul Maier
Hi, the word not should be added to this description: man xterm [...] +maximized This option indicates that xterm should ask the window manager to maximize its layout on startup. It should read: ... should *not* ask the window manager ... Regards, Paul --

Re: typo in man xterm

2012-07-28 Thread Thomas Dickey
On Sat, Jul 28, 2012 at 02:24:52PM +0200, Paul Maier wrote: Hi, the word not should be added to this description: man xterm [...] +maximized This option indicates that xterm should ask the window manager to maximize its layout on startup. It should

AW: typo in man xterm

2012-07-28 Thread Paul Maier
Hi, the word not should be added to this description: man xterm [...] +maximized This option indicates that xterm should ask the window manager to maximize its layout on startup. It should read: ... should *not* ask the window manager ...

  1   2   >