public inbox for glibc-cvs@sourceware.org
help / color / mirror / Atom feed
* [glibc/azanella/clang] inet: Use __ferror_unlocked
@ 2022-06-09 21:25 Adhemerval Zanella
  0 siblings, 0 replies; 9+ messages in thread
From: Adhemerval Zanella @ 2022-06-09 21:25 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=df365275a6e1ba6eefe4a890193a184b877bcd9a

commit df365275a6e1ba6eefe4a890193a184b877bcd9a
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Thu Mar 31 14:28:02 2022 -0300

    inet: Use __ferror_unlocked

Diff:
---
 inet/ruserpass.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/inet/ruserpass.c b/inet/ruserpass.c
index 4b3eae8284..42ebe94e03 100644
--- a/inet/ruserpass.c
+++ b/inet/ruserpass.c
@@ -217,7 +217,7 @@ token (void)
 	int c;
 	int i;
 
-	if (feof_unlocked(cfile) || ferror_unlocked(cfile))
+	if (feof_unlocked(cfile) || __ferror_unlocked(cfile))
 		return (0);
 	while ((c = __getc_unlocked(cfile)) != EOF &&
 	    (c == '\n' || c == '\t' || c == ' ' || c == ','))


^ permalink raw reply	[flat|nested] 9+ messages in thread

* [glibc/azanella/clang] inet: Use __ferror_unlocked
@ 2022-06-09 13:21 Adhemerval Zanella
  0 siblings, 0 replies; 9+ messages in thread
From: Adhemerval Zanella @ 2022-06-09 13:21 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=df365275a6e1ba6eefe4a890193a184b877bcd9a

commit df365275a6e1ba6eefe4a890193a184b877bcd9a
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Thu Mar 31 14:28:02 2022 -0300

    inet: Use __ferror_unlocked

Diff:
---
 inet/ruserpass.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/inet/ruserpass.c b/inet/ruserpass.c
index 4b3eae8284..42ebe94e03 100644
--- a/inet/ruserpass.c
+++ b/inet/ruserpass.c
@@ -217,7 +217,7 @@ token (void)
 	int c;
 	int i;
 
-	if (feof_unlocked(cfile) || ferror_unlocked(cfile))
+	if (feof_unlocked(cfile) || __ferror_unlocked(cfile))
 		return (0);
 	while ((c = __getc_unlocked(cfile)) != EOF &&
 	    (c == '\n' || c == '\t' || c == ' ' || c == ','))


^ permalink raw reply	[flat|nested] 9+ messages in thread

* [glibc/azanella/clang] inet: Use __ferror_unlocked
@ 2022-06-03 14:11 Adhemerval Zanella
  0 siblings, 0 replies; 9+ messages in thread
From: Adhemerval Zanella @ 2022-06-03 14:11 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=3094f85971592dd36e6dfbce21cefc7a525d2f56

commit 3094f85971592dd36e6dfbce21cefc7a525d2f56
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Thu Mar 31 14:28:02 2022 -0300

    inet: Use __ferror_unlocked

Diff:
---
 inet/ruserpass.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/inet/ruserpass.c b/inet/ruserpass.c
index 4b3eae8284..42ebe94e03 100644
--- a/inet/ruserpass.c
+++ b/inet/ruserpass.c
@@ -217,7 +217,7 @@ token (void)
 	int c;
 	int i;
 
-	if (feof_unlocked(cfile) || ferror_unlocked(cfile))
+	if (feof_unlocked(cfile) || __ferror_unlocked(cfile))
 		return (0);
 	while ((c = __getc_unlocked(cfile)) != EOF &&
 	    (c == '\n' || c == '\t' || c == ' ' || c == ','))


^ permalink raw reply	[flat|nested] 9+ messages in thread

* [glibc/azanella/clang] inet: Use __ferror_unlocked
@ 2022-05-13 14:25 Adhemerval Zanella
  0 siblings, 0 replies; 9+ messages in thread
From: Adhemerval Zanella @ 2022-05-13 14:25 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=550ea1f2eaeaa7c00f04309365a39c7569dc4120

commit 550ea1f2eaeaa7c00f04309365a39c7569dc4120
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Thu Mar 31 14:28:02 2022 -0300

    inet: Use __ferror_unlocked

Diff:
---
 inet/ruserpass.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/inet/ruserpass.c b/inet/ruserpass.c
index def63acac0..f6f212ec9f 100644
--- a/inet/ruserpass.c
+++ b/inet/ruserpass.c
@@ -217,7 +217,7 @@ token (void)
 	int c;
 	int i;
 
-	if (feof_unlocked(cfile) || ferror_unlocked(cfile))
+	if (feof_unlocked(cfile) || __ferror_unlocked(cfile))
 		return (0);
 	while ((c = __getc_unlocked(cfile)) != EOF &&
 	    (c == '\n' || c == '\t' || c == ' ' || c == ','))


^ permalink raw reply	[flat|nested] 9+ messages in thread

* [glibc/azanella/clang] inet: Use __ferror_unlocked
@ 2022-05-12 19:38 Adhemerval Zanella
  0 siblings, 0 replies; 9+ messages in thread
From: Adhemerval Zanella @ 2022-05-12 19:38 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=08a63f0c4c88b54cbada43fcd89c78605d8cf215

commit 08a63f0c4c88b54cbada43fcd89c78605d8cf215
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Thu Mar 31 14:28:02 2022 -0300

    inet: Use __ferror_unlocked

Diff:
---
 inet/ruserpass.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/inet/ruserpass.c b/inet/ruserpass.c
index def63acac0..f6f212ec9f 100644
--- a/inet/ruserpass.c
+++ b/inet/ruserpass.c
@@ -217,7 +217,7 @@ token (void)
 	int c;
 	int i;
 
-	if (feof_unlocked(cfile) || ferror_unlocked(cfile))
+	if (feof_unlocked(cfile) || __ferror_unlocked(cfile))
 		return (0);
 	while ((c = __getc_unlocked(cfile)) != EOF &&
 	    (c == '\n' || c == '\t' || c == ' ' || c == ','))


^ permalink raw reply	[flat|nested] 9+ messages in thread

* [glibc/azanella/clang] inet: Use __ferror_unlocked
@ 2022-05-10 18:29 Adhemerval Zanella
  0 siblings, 0 replies; 9+ messages in thread
From: Adhemerval Zanella @ 2022-05-10 18:29 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=b2bc23731a2b765c0f89f8a0f74fa30ce7c16a2b

commit b2bc23731a2b765c0f89f8a0f74fa30ce7c16a2b
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Thu Mar 31 14:28:02 2022 -0300

    inet: Use __ferror_unlocked

Diff:
---
 inet/ruserpass.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/inet/ruserpass.c b/inet/ruserpass.c
index def63acac0..f6f212ec9f 100644
--- a/inet/ruserpass.c
+++ b/inet/ruserpass.c
@@ -217,7 +217,7 @@ token (void)
 	int c;
 	int i;
 
-	if (feof_unlocked(cfile) || ferror_unlocked(cfile))
+	if (feof_unlocked(cfile) || __ferror_unlocked(cfile))
 		return (0);
 	while ((c = __getc_unlocked(cfile)) != EOF &&
 	    (c == '\n' || c == '\t' || c == ' ' || c == ','))


^ permalink raw reply	[flat|nested] 9+ messages in thread

* [glibc/azanella/clang] inet: Use __ferror_unlocked
@ 2022-04-29 14:09 Adhemerval Zanella
  0 siblings, 0 replies; 9+ messages in thread
From: Adhemerval Zanella @ 2022-04-29 14:09 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=7b952365dae9d96399dae45ae35f712c37bd0b1d

commit 7b952365dae9d96399dae45ae35f712c37bd0b1d
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Thu Mar 31 14:28:02 2022 -0300

    inet: Use __ferror_unlocked

Diff:
---
 inet/ruserpass.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/inet/ruserpass.c b/inet/ruserpass.c
index def63acac0..f6f212ec9f 100644
--- a/inet/ruserpass.c
+++ b/inet/ruserpass.c
@@ -217,7 +217,7 @@ token (void)
 	int c;
 	int i;
 
-	if (feof_unlocked(cfile) || ferror_unlocked(cfile))
+	if (feof_unlocked(cfile) || __ferror_unlocked(cfile))
 		return (0);
 	while ((c = __getc_unlocked(cfile)) != EOF &&
 	    (c == '\n' || c == '\t' || c == ' ' || c == ','))


^ permalink raw reply	[flat|nested] 9+ messages in thread

* [glibc/azanella/clang] inet: Use __ferror_unlocked
@ 2022-04-04 12:59 Adhemerval Zanella
  0 siblings, 0 replies; 9+ messages in thread
From: Adhemerval Zanella @ 2022-04-04 12:59 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=cc3183c4c2cf82d05c4a0b4d9ee771be8b4658ad

commit cc3183c4c2cf82d05c4a0b4d9ee771be8b4658ad
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Thu Mar 31 14:28:02 2022 -0300

    inet: Use __ferror_unlocked

Diff:
---
 inet/ruserpass.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/inet/ruserpass.c b/inet/ruserpass.c
index def63acac0..f6f212ec9f 100644
--- a/inet/ruserpass.c
+++ b/inet/ruserpass.c
@@ -217,7 +217,7 @@ token (void)
 	int c;
 	int i;
 
-	if (feof_unlocked(cfile) || ferror_unlocked(cfile))
+	if (feof_unlocked(cfile) || __ferror_unlocked(cfile))
 		return (0);
 	while ((c = __getc_unlocked(cfile)) != EOF &&
 	    (c == '\n' || c == '\t' || c == ' ' || c == ','))


^ permalink raw reply	[flat|nested] 9+ messages in thread

* [glibc/azanella/clang] inet: Use __ferror_unlocked
@ 2022-03-31 19:11 Adhemerval Zanella
  0 siblings, 0 replies; 9+ messages in thread
From: Adhemerval Zanella @ 2022-03-31 19:11 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=90b48d3b0f6f74337b4a44302b45c572687a63c5

commit 90b48d3b0f6f74337b4a44302b45c572687a63c5
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Thu Mar 31 14:28:02 2022 -0300

    inet: Use __ferror_unlocked

Diff:
---
 inet/ruserpass.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/inet/ruserpass.c b/inet/ruserpass.c
index def63acac0..f6f212ec9f 100644
--- a/inet/ruserpass.c
+++ b/inet/ruserpass.c
@@ -217,7 +217,7 @@ token (void)
 	int c;
 	int i;
 
-	if (feof_unlocked(cfile) || ferror_unlocked(cfile))
+	if (feof_unlocked(cfile) || __ferror_unlocked(cfile))
 		return (0);
 	while ((c = __getc_unlocked(cfile)) != EOF &&
 	    (c == '\n' || c == '\t' || c == ' ' || c == ','))


^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2022-06-09 21:25 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-09 21:25 [glibc/azanella/clang] inet: Use __ferror_unlocked Adhemerval Zanella
  -- strict thread matches above, loose matches on Subject: below --
2022-06-09 13:21 Adhemerval Zanella
2022-06-03 14:11 Adhemerval Zanella
2022-05-13 14:25 Adhemerval Zanella
2022-05-12 19:38 Adhemerval Zanella
2022-05-10 18:29 Adhemerval Zanella
2022-04-29 14:09 Adhemerval Zanella
2022-04-04 12:59 Adhemerval Zanella
2022-03-31 19:11 Adhemerval Zanella

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).