mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-26 17:18:15 +00:00
rtspconnection: we can use GLib 2.18 API unconditionally now
This commit is contained in:
parent
74b83a692a
commit
92465ba8ac
1 changed files with 0 additions and 5 deletions
|
@ -917,12 +917,7 @@ auth_digest_compute_response (const gchar * method,
|
|||
memcpy (hex_a2, digest_string, strlen (digest_string));
|
||||
|
||||
/* compute KD */
|
||||
#if GLIB_CHECK_VERSION (2, 18, 0)
|
||||
g_checksum_reset (md5_context);
|
||||
#else
|
||||
g_checksum_free (md5_context);
|
||||
md5_context = g_checksum_new (G_CHECKSUM_MD5);
|
||||
#endif
|
||||
g_checksum_update (md5_context, (const guchar *) hex_a1, strlen (hex_a1));
|
||||
g_checksum_update (md5_context, (const guchar *) ":", 1);
|
||||
g_checksum_update (md5_context, (const guchar *) nonce, strlen (nonce));
|
||||
|
|
Loading…
Reference in a new issue