From d327f99efbcaa17b423c8f42cd4a1bb6f7639362 Mon Sep 17 00:00:00 2001 From: Michael Rash Date: Tue, 8 Apr 2014 21:06:18 -0400 Subject: [PATCH] [client] minor typo fix --- client/spa_comm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/spa_comm.c b/client/spa_comm.c index 28b2b70a..88e57e1e 100644 --- a/client/spa_comm.c +++ b/client/spa_comm.c @@ -597,7 +597,7 @@ send_spa_packet(fko_ctx_t ctx, fko_cli_options_t *options) char *spa_data; struct sockaddr_in saddr, daddr; char ip_str[INET_ADDRSTRLEN] = {0}; /* String used to contain the ip addres of an hostname */ - struct addrinfo hints; /* Structure used to set hints to reslove hostname */ + struct addrinfo hints; /* Structure used to set hints to resolve hostname */ #ifdef WIN32 WSADATA wsa_data; #endif @@ -675,7 +675,7 @@ send_spa_packet(fko_ctx_t ctx, fko_cli_options_t *options) */ daddr.sin_port = htons(options->spa_dst_port); - /* Set destination address. We use the default protocol to reslove + /* Set destination address. We use the default protocol to resolve * the ip address */ hints.ai_family = AF_INET;