summaryrefslogtreecommitdiff
path: root/sysdeps/generic/getutmpx.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1999-05-14 21:30:22 +0000
committerUlrich Drepper <drepper@redhat.com>1999-05-14 21:30:22 +0000
commit1483b7537883c00276b91f8c35496594edd5b073 (patch)
tree2fa8096ac53daa0d1c3f837a0aefc466ebfc033f /sysdeps/generic/getutmpx.c
parentd60d215c57261eb35e540fa13c04f6dc0957c476 (diff)
Update.
1999-05-14 Mark Kettenis <kettenis@gnu.org> * sysdeps/generic/getutmp.c: Include <string.h> (getutmp): Rewrite to only copy those members that are really present in `struct utmp'. * sysdeps/generic/getutmpx.c: Likewise.
Diffstat (limited to 'sysdeps/generic/getutmpx.c')
-rw-r--r--sysdeps/generic/getutmpx.c30
1 files changed, 19 insertions, 11 deletions
diff --git a/sysdeps/generic/getutmpx.c b/sysdeps/generic/getutmpx.c
index 41dfeaed69..e707a6488c 100644
--- a/sysdeps/generic/getutmpx.c
+++ b/sysdeps/generic/getutmpx.c
@@ -16,25 +16,33 @@
write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA. */
+#include <string.h>
#include <utmp.h>
#include <utmpx.h>
+/* Copy the information in UTMP to UTMPX. */
void
getutmpx (const struct utmp *utmp, struct utmpx *utmpx)
{
+ memset (utmpx, 0, sizeof (struct utmpx));
+
+#if _HAVE_UT_TYPE - 0
utmpx->ut_type = utmp->ut_type;
+#endif
+#if _HAVE_UT_PID - 0
utmpx->ut_pid = utmp->ut_pid;
- memcpy (utmpx->ut_line, utmp->ut_line, sizeof (utmpx->ut_line));
- memcpy (utmpx->ut_id, utmp->ut_id, sizeof (utmpx->ut_id));
- memcpy (utmpx->ut_user, utmp->ut_user, sizeof (utmpx->ut_user));
- memcpy (utmpx->ut_host, utmp->ut_host, sizeof (utmpx->ut_host));
-#ifdef _GNU_SOURCE
- utmpx->ut_exit.e_termination = utmp->ut_exit.e_termination;
- utmpx->ut_exit.e_exit = utmp->ut_exit.e_exit;
-#else
- utmpx->ut_exit.__e_termination = utmp->ut_exit.e_termination;
- utmpx->ut_exit.__e_exit = utmp->ut_exit.e_exit;
#endif
- utmpx->ut_session = utmp->ut_session;
+ memcpy (utmpx->ut_line, utmp->ut_line, sizeof (utmp->ut_line));
+ memcpy (utmpx->ut_user, utmp->ut_user, sizeof (utmp->ut_user));
+#if _HAVE_UT_ID - 0
+ memcpy (utmpx->ut_id, utmp->ut_id, sizeof (utmp->ut_id));
+#endif
+#if _HAVE_UT_HOST - 0
+ memcpy (utmpx->ut_host, utmp->ut_host, sizeof (utmp->ut_host));
+#endif
+#if _HAVE_UT_TV - 0
utmpx->ut_tv = utmp->ut_tv;
+#else
+ utmpx->ut_time = utmp->ut_time;
+#endif
}