]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
1836. [cleanup] Silence compiler warnings in hash_test.c
authorMark Andrews <marka@isc.org>
Wed, 16 Mar 2005 19:56:29 +0000 (19:56 +0000)
committerMark Andrews <marka@isc.org>
Wed, 16 Mar 2005 19:56:29 +0000 (19:56 +0000)
bin/tests/hash_test.c

index d7266816b5c4cce4fc4eaa9f2529470332afc0bb..f200a638df7f6e8b4718ef134e4e243e6e08dd8b 100644 (file)
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: hash_test.c,v 1.12 2005/03/16 19:45:45 marka Exp $ */
+/* $Id: hash_test.c,v 1.13 2005/03/16 19:56:29 marka Exp $ */
 
 #include <config.h>
 
@@ -89,7 +89,7 @@ main(int argc, char **argv) {
        print_digest(buffer, "hmacmd5", digest, 4);
 
        s = "what do ya want for nothing?";
-       strcpy(key, "Jefe");
+       strcpy((char *)key, "Jefe");
        isc_hmacmd5_init(&hmacmd5, key, 4);
        memcpy(buffer, s, strlen(s));
        isc_hmacmd5_update(&hmacmd5, buffer, strlen(s));