diff options
-rw-r--r-- | src/libstrongswan/utils/identification.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libstrongswan/utils/identification.c b/src/libstrongswan/utils/identification.c index 98424586f..2b2e907f0 100644 --- a/src/libstrongswan/utils/identification.c +++ b/src/libstrongswan/utils/identification.c @@ -980,9 +980,9 @@ int identification_printf_hook(printf_hook_data_t *data, { private_identification_t *this = *((private_identification_t**)(args[0])); chunk_t proper; - char buf[BUF_LEN]; - char *pos; - size_t written, len, address_size; + char buf[BUF_LEN], *pos; + size_t len, address_size; + int written; if (this == NULL) { |