mirror of
https://git.freebsd.org/src.git
synced 2026-01-16 23:02:24 +00:00
We haven't exposed gets(3) in a long time, rip out __gets_chk before it's too late and something builds a gets(3) user with it enabled.
26 lines
315 B
Text
26 lines
315 B
Text
/*
|
|
*/
|
|
|
|
LIBSSP_1.0 {
|
|
__chk_fail;
|
|
__stack_chk_fail;
|
|
__stack_chk_guard;
|
|
|
|
__memcpy_chk;
|
|
__memset_chk;
|
|
__snprintf_chk;
|
|
__sprintf_chk;
|
|
__stpcpy_chk;
|
|
__strcat_chk;
|
|
__strcpy_chk;
|
|
__strncat_chk;
|
|
__strncpy_chk;
|
|
__vsnprintf_chk;
|
|
__vsprintf_chk;
|
|
};
|
|
|
|
LIBSSP_1.1 {
|
|
__fgets_chk;
|
|
__memmove_chk;
|
|
__stpncpy_chk;
|
|
};
|