comparison src/cipher.c @ 13395:ff4e85e04adf

[gaim-migrate @ 15768] Remove some dead code. Resolves Coverity CID 1 of 113 ;) committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Mon, 06 Mar 2006 07:53:52 +0000
parents c01aa6ea4947
children 89ceef5203ac
comparison
equal deleted inserted replaced
13394:eb0ce960ff60 13395:ff4e85e04adf
1934 gaim_cipher_context_append(context, (guchar *)nonce_count, strlen(nonce_count)); 1934 gaim_cipher_context_append(context, (guchar *)nonce_count, strlen(nonce_count));
1935 gaim_cipher_context_append(context, (guchar *)":", 1); 1935 gaim_cipher_context_append(context, (guchar *)":", 1);
1936 gaim_cipher_context_append(context, (guchar *)client_nonce, strlen(client_nonce)); 1936 gaim_cipher_context_append(context, (guchar *)client_nonce, strlen(client_nonce));
1937 gaim_cipher_context_append(context, (guchar *)":", 1); 1937 gaim_cipher_context_append(context, (guchar *)":", 1);
1938 1938
1939 if (qop != NULL) 1939 gaim_cipher_context_append(context, (guchar *)qop, strlen(qop));
1940 gaim_cipher_context_append(context, (guchar *)qop, strlen(qop));
1941 else
1942 gaim_cipher_context_append(context, (guchar *)"", 0);
1943 1940
1944 gaim_cipher_context_append(context, (guchar *)":", 1); 1941 gaim_cipher_context_append(context, (guchar *)":", 1);
1945 } 1942 }
1946 1943
1947 gaim_cipher_context_append(context, (guchar *)hash2, strlen(hash2)); 1944 gaim_cipher_context_append(context, (guchar *)hash2, strlen(hash2));