Remove unused offset variable in src/ssl.h
[umurmur.git] / src / ssl.h
index 0340673bdc4be894b3561651c76f7169839b6f68..2d86a0552bdcb5bc518cb2cb94932bb62f73e5a5 100644 (file)
--- a/src/ssl.h
+++ b/src/ssl.h
@@ -1,5 +1,5 @@
-/* Copyright (C) 2009-2013, Martin Johansson <martin@fatbob.nu>
-   Copyright (C) 2005-2013, Thorvald Natvig <thorvald@natvig.com>
+/* Copyright (C) 2009-2014, Martin Johansson <martin@fatbob.nu>
+   Copyright (C) 2005-2014, Thorvald Natvig <thorvald@natvig.com>
 
    All rights reserved.
 
@@ -32,9 +32,7 @@
 #ifndef SSL_H_987698
 #define SSL_H_987698
 
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
+#include "config.h"
 
 #ifdef USE_POLARSSL
 #include <polarssl/ssl.h>
@@ -127,10 +125,10 @@ static inline void SSLi_hash2hex(uint8_t *hash, char *out)
 }
 static inline void SSLi_hex2hash(char *in, uint8_t *hash)
 {
-       int i, offset = 0;
+       int i;
        char byte[3];
        int scanned;
-       
+
        byte[2] = '\0';
        for (i = 0; i < 20; i++) {
                memcpy(byte, &in[i * 2], 2);