Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • Maytha8/glibc
  • vimerbf-guest/glibc
  • schopin/glibc
  • yumeyao/glibc
  • carlespina/po-debconf-manager-glibc
  • Claudia/glibc-widevine
  • andrewsh/glibc
  • jscott/glibc
  • bluca/glibc
  • gioele/glibc
  • rouca/glibc
  • sven/glibc
  • josch/glibc
  • cjwatson/glibc
  • fw/glibc
  • rbalint/glibc
  • bsd-team/glibc-packaging
  • glibc-team/glibc
  • bigon/glibc
  • ahrex-guest/glibc
  • friki/glibc
21 results
Show changes
Commits on Source (2)
......@@ -2,6 +2,10 @@ glibc (2.37-13) UNRELEASED; urgency=medium
 
[ Aurelien Jarno ]
* debian/rules.d/control.mk: enable build on loong64. Closes: #1053717.
* debian/patches/git-updates.diff: update from upstream stable branch.
* debian/patches/any/local-tcsetaddr.diff: fix a thinko in handling of
CREAD, CSIZE, PARENB bits in tcsetaddr(). Thanks to Ian Abbott for the
hint. Closes: #1050290.
 
[ Samuel Thibault ]
* debian/patches/hurd-i386/git-statfs_f_ffree.patch: Add missing f_ffree
......
......@@ -57,8 +57,8 @@
+ __set_errno (save);
+ retval = 0;
+ }
+ else if ((k_termios_old.c_cflag | (PARENB & CREAD & CSIZE)) !=
+ (k_termios.c_cflag | (PARENB & CREAD & CSIZE)))
+ else if ((k_termios_old.c_cflag & ~(PARENB | CREAD | CSIZE)) !=
+ (k_termios.c_cflag & ~(PARENB | CREAD | CSIZE)))
+ {
+ /* Some other c_cflag setting was successfully changed, which
+ means we should not return an error. */
......
This diff is collapsed.