mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-09 19:06:15 +01:00
gdbusutils: Stop using g_get_current_time()
It is deprecated. Signed-off-by: Philip Withnall <withnall@endlessm.com> Helps: #1438
This commit is contained in:
parent
4faf4fcfaa
commit
def5db23a3
@ -291,22 +291,22 @@ gchar *
|
|||||||
g_dbus_generate_guid (void)
|
g_dbus_generate_guid (void)
|
||||||
{
|
{
|
||||||
GString *s;
|
GString *s;
|
||||||
GTimeVal now;
|
|
||||||
guint32 r1;
|
guint32 r1;
|
||||||
guint32 r2;
|
guint32 r2;
|
||||||
guint32 r3;
|
guint32 r3;
|
||||||
|
gint64 now_us;
|
||||||
|
|
||||||
s = g_string_new (NULL);
|
s = g_string_new (NULL);
|
||||||
|
|
||||||
r1 = g_random_int ();
|
r1 = g_random_int ();
|
||||||
r2 = g_random_int ();
|
r2 = g_random_int ();
|
||||||
r3 = g_random_int ();
|
r3 = g_random_int ();
|
||||||
g_get_current_time (&now);
|
now_us = g_get_real_time ();
|
||||||
|
|
||||||
g_string_append_printf (s, "%08x", r1);
|
g_string_append_printf (s, "%08x", r1);
|
||||||
g_string_append_printf (s, "%08x", r2);
|
g_string_append_printf (s, "%08x", r2);
|
||||||
g_string_append_printf (s, "%08x", r3);
|
g_string_append_printf (s, "%08x", r3);
|
||||||
g_string_append_printf (s, "%08x", (guint32) now.tv_sec);
|
g_string_append_printf (s, "%08x", (guint32) (now_us / G_USEC_PER_SEC));
|
||||||
|
|
||||||
return g_string_free (s, FALSE);
|
return g_string_free (s, FALSE);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user