about summary refs log tree commit diff stats
path: root/src/xmpp/connection.c
diff options
context:
space:
mode:
authorMichael Vetter <jubalh@iodoru.org>2019-10-19 23:27:19 +0200
committerMichael Vetter <jubalh@iodoru.org>2019-10-19 23:27:19 +0200
commitdb4b55eee00d6eb801466ccb8ffafbfc176271a8 (patch)
treea2354b1b1b8602c1d2dc7fa37f0a330d3e30fa7b /src/xmpp/connection.c
parent31014b5e513234e9ee7696fc88eb9cab30d8a12e (diff)
downloadprofani-tty-db4b55eee00d6eb801466ccb8ffafbfc176271a8.tar.gz
Rename random_bytes to profanity_instance_id
Diffstat (limited to 'src/xmpp/connection.c')
-rw-r--r--src/xmpp/connection.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/xmpp/connection.c b/src/xmpp/connection.c
index 24d6759f..a21a38b9 100644
--- a/src/xmpp/connection.c
+++ b/src/xmpp/connection.c
@@ -75,7 +75,7 @@ typedef struct prof_conn_t {
 } ProfConnection;
 
 static ProfConnection conn;
-static gchar *random_bytes = NULL;
+static gchar *profanity_instance_id = NULL;
 static gchar *prof_identifier = NULL;
 
 static xmpp_log_t* _xmpp_get_file_logger(void);
@@ -645,10 +645,10 @@ static void _random_bytes_init(void)
     g_key_file_load_from_file(rndbytes, rndbytes_loc, G_KEY_FILE_KEEP_COMMENTS, NULL);
 
     if (g_key_file_has_group(rndbytes, "identifier")) {
-        random_bytes = g_key_file_get_string(rndbytes, "identifier", "random_bytes", NULL);
+        profanity_instance_id = g_key_file_get_string(rndbytes, "identifier", "random_bytes", NULL);
     } else {
-        random_bytes = get_random_string(10);
-        g_key_file_set_string(rndbytes, "identifier", "random_bytes", random_bytes);
+        profanity_instance_id = get_random_string(10);
+        g_key_file_set_string(rndbytes, "identifier", "random_bytes", profanity_instance_id);
 
         gsize g_data_size;
         gchar *g_accounts_data = g_key_file_to_data(rndbytes, &g_data_size, NULL);
@@ -668,13 +668,13 @@ static void _random_bytes_init(void)
 
 static void _random_bytes_close(void)
 {
-    g_free(random_bytes);
+    g_free(profanity_instance_id);
 }
 
 static void _calculate_identifier(const char *barejid)
 {
     gchar *hmac = g_compute_hmac_for_string(G_CHECKSUM_SHA256,
-            (guchar*)random_bytes, strlen(random_bytes),
+            (guchar*)profanity_instance_id, strlen(profanity_instance_id),
             barejid, strlen(barejid));
 
     char *b64 = g_base64_encode((guchar*)hmac, XMPP_SHA1_DIGEST_SIZE);