Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Move ptsname_r_chk to login/ subdir.
  • Loading branch information
Roland McGrath committed May 6, 2013
1 parent 8fb16a0 commit bd9ffde
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 3 deletions.
7 changes: 7 additions & 0 deletions ChangeLog
@@ -1,5 +1,12 @@
2013-05-06 Roland McGrath <roland@hack.frob.com>

* debug/ptsname_r_chk.c: Moved to ...
* login/ptsname_r_chk.c: ... here.
* debug/Makefile (routines): Move ptsname_r_chk to ...
* login/Makefile (routines): ... here.
* debug/Versions (libc: GLIBC_2.4): Move __ptsname_r_chk to ...
* login/Versions (libc: GLIBC_2.4): ... here.

* posix/getlogin.c: Moved to ...
* login/getlogin.c: ... here.
* posix/getlogin_r.c: Moved to ...
Expand Down
5 changes: 4 additions & 1 deletion debug/Makefile
Expand Up @@ -22,6 +22,9 @@ subdir := debug

headers := execinfo.h

# Note that ptsname_r_chk is not here but in login/Makefile instead.
# If that subdir is omitted from the build, its _FORTIFY_SOURCE
# support will be too.
routines = backtrace backtracesyms backtracesymsfd noophooks \
memcpy_chk memmove_chk mempcpy_chk memset_chk stpcpy_chk \
strcat_chk strcpy_chk strncat_chk strncpy_chk stpncpy_chk \
Expand All @@ -30,7 +33,7 @@ routines = backtrace backtracesyms backtracesymsfd noophooks \
gets_chk chk_fail readonly-area fgets_chk fgets_u_chk \
read_chk pread_chk pread64_chk recv_chk recvfrom_chk \
readlink_chk readlinkat_chk getwd_chk getcwd_chk \
realpath_chk ptsname_r_chk fread_chk fread_u_chk \
realpath_chk fread_chk fread_u_chk \
wctomb_chk wcscpy_chk wmemcpy_chk wmemmove_chk wmempcpy_chk \
wcpcpy_chk wcsncpy_chk wcscat_chk wcsncat_chk wmemset_chk \
wcpncpy_chk \
Expand Down
2 changes: 1 addition & 1 deletion debug/Versions
Expand Up @@ -23,7 +23,7 @@ libc {
__read_chk; __pread_chk; __pread64_chk;
__readlink_chk; __getcwd_chk; __getwd_chk;
__recv_chk; __recvfrom_chk;
__realpath_chk; __ptsname_r_chk; __wctomb_chk;
__realpath_chk; __wctomb_chk;
__stpncpy_chk;
__wcscpy_chk; __wmemcpy_chk; __wmemmove_chk; __wmempcpy_chk; __wcpcpy_chk;
__wcsncpy_chk; __wcscat_chk; __wcsncat_chk; __wmemset_chk; __wcpncpy_chk;
Expand Down
3 changes: 2 additions & 1 deletion login/Makefile
Expand Up @@ -25,7 +25,8 @@ headers := utmp.h bits/utmp.h lastlog.h pty.h

routines := getlogin getlogin_r setlogin \
getutent getutent_r getutid getutline getutid_r getutline_r \
utmp_file utmpname updwtmp getpt grantpt unlockpt ptsname
utmp_file utmpname updwtmp getpt grantpt unlockpt ptsname \
ptsname_r_chk

CFLAGS-grantpt.c = -DLIBEXECDIR='"$(libexecdir)"'

Expand Down
3 changes: 3 additions & 0 deletions login/Versions
Expand Up @@ -41,6 +41,9 @@ libc {
# p*
posix_openpt;
}
GLIBC_2.4 {
__ptsname_r_chk;
}
}

libutil {
Expand Down
File renamed without changes.

0 comments on commit bd9ffde

Please sign in to comment.