diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2021-08-10 17:30:12 +0000 |
---|---|---|
committer | Laurent Bercot <ska@appnovation.com> | 2021-08-10 17:30:12 +0000 |
commit | 172a3c0321f90fe5e8118d35e8c24cc8aa4bb4de (patch) | |
tree | cd4d3e36848e22d24ccbc464499330eb9c561203 /src/include | |
parent | 36d51235c92713583a51f930e16e3ad803847e4e (diff) | |
download | utmps-172a3c0321f90fe5e8118d35e8c24cc8aa4bb4de.tar.gz utmps-172a3c0321f90fe5e8118d35e8c24cc8aa4bb4de.tar.xz utmps-172a3c0321f90fe5e8118d35e8c24cc8aa4bb4de.zip |
Prepare for 0.1.0.3, adapt to skalibs-2.11.0.0
Signed-off-by: Laurent Bercot <ska@appnovation.com>
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/utmps/utmps.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/include/utmps/utmps.h b/src/include/utmps/utmps.h index e4760f9..9894276 100644 --- a/src/include/utmps/utmps.h +++ b/src/include/utmps/utmps.h @@ -13,23 +13,23 @@ struct utmps_s } ; #define UTMPS_ZERO { .fd = -1 } -extern int utmps_start (utmps *, char const *, tain_t const *, tain_t *) ; +extern int utmps_start (utmps *, char const *, tain const *, tain *) ; #define utmps_start_g(a, s, deadline) utmps_start(a, s, (deadline), &STAMP) extern void utmps_end (utmps *) ; -extern int utmps_rewind (utmps *, tain_t const *, tain_t *) ; +extern int utmps_rewind (utmps *, tain const *, tain *) ; #define utmps_rewind_g (a, deadline) utmps_rewind(a, (deadline), &STAMP) -extern int utmps_getent (utmps *, struct utmpx *, tain_t const *, tain_t *) ; +extern int utmps_getent (utmps *, struct utmpx *, tain const *, tain *) ; #define utmps_getent_g (a, b, deadline) utmps_getent(a, b, (deadline), &STAMP) -extern int utmps_getid (utmps *, unsigned short, char const *, struct utmpx *, tain_t const *, tain_t *) ; +extern int utmps_getid (utmps *, unsigned short, char const *, struct utmpx *, tain const *, tain *) ; #define utmps_getid_g(a, type, id, b, deadline) utmps_getid(a, type, id, b, (deadline), &STAMP) -extern int utmps_getline (utmps *, char const *, struct utmpx *, tain_t const *, tain_t *) ; +extern int utmps_getline (utmps *, char const *, struct utmpx *, tain const *, tain *) ; #define utmps_getline_g(a, line, b, deadline) utmps_getline(a, line, b, (deadline), &STAMP) -extern int utmps_putline (utmps *, struct utmpx const *, tain_t const *, tain_t *) ; +extern int utmps_putline (utmps *, struct utmpx const *, tain const *, tain *) ; #define utmps_putline_g(a, entry, deadline) utmps_putline(a, entry, (deadine), &STAMP) -extern int utmps_updwtmpx (char const *, struct utmpx const *, tain_t const *, tain_t *) ; +extern int utmps_updwtmpx (char const *, struct utmpx const *, tain const *, tain *) ; #define utmps_updwtmpx_g(file, b, deadline) utmps_updwtmpx(file, b, (deadline), &STAMP) #endif |