Andreas Schwab
da08f55dc8
- fts-symbol-redirect.patch: Fix symbol redirect for fts_set (bsc#1041123, BZ #21289) - test-math-vector-sincos-aliasing.patch: Fix test-math-vector-sincos.h aliasing - add-locales.patch: renamed from glibc-2.3.locales.diff.bz2, drop en_BE locales (bsc#1039502) - Remove glibc-testsuite.patch, no longer relevant OBS-URL: https://build.opensuse.org/request/show/500196 OBS-URL: https://build.opensuse.org/package/show/Base:System/glibc?expand=0&rev=457
19 lines
679 B
Diff
19 lines
679 B
Diff
2017-03-31 Slava Barinov <v.barinov@samsung.com>
|
|
|
|
[BZ #21289]
|
|
* io/fts.h (fts_set): Replace __REDIRECT with __REDIRECT_NTH.
|
|
|
|
Index: glibc-2.25/io/fts.h
|
|
===================================================================
|
|
--- glibc-2.25.orig/io/fts.h
|
|
+++ glibc-2.25/io/fts.h
|
|
@@ -193,7 +193,7 @@ FTS *__REDIRECT (fts_open, (char * const
|
|
int (*)(const FTSENT **, const FTSENT **)),
|
|
fts64_open);
|
|
FTSENT *__REDIRECT (fts_read, (FTS *), fts64_read);
|
|
-int __REDIRECT (fts_set, (FTS *, FTSENT *, int), fts64_set) __THROW;
|
|
+int __REDIRECT_NTH (fts_set, (FTS *, FTSENT *, int), fts64_set);
|
|
# else
|
|
# define fts_children fts64_children
|
|
# define fts_close fts64_close
|