Deleted Added
full compact
logutmp.c (133936) logutmp.c (161764)
1/*
2 * Portions Copyright (c) 1988, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 140 unchanged lines hidden (view full) ---

149/*
150 * special version of loginx which updates utmpx only.
151 */
152void
153ftpd_loginx(const struct utmpx *ut)
154{
155 (void)pututxline(ut);
156}
1/*
2 * Portions Copyright (c) 1988, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 140 unchanged lines hidden (view full) ---

149/*
150 * special version of loginx which updates utmpx only.
151 */
152void
153ftpd_loginx(const struct utmpx *ut)
154{
155 (void)pututxline(ut);
156}
157
158int
159ftpd_logoutx(const char *line, int status, int mode)
160{
161 return logoutx(line, status, mode);
162}
157#endif
163#endif