From c8659263d07638e9736c9c2f1710fe80ad074e31 Mon Sep 17 00:00:00 2001 From: Adam Shapiro Date: Fri, 29 Mar 2024 09:02:43 -0400 Subject: [PATCH] Minor review cleanup. --- c/src/point_one/polaris/polaris.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/c/src/point_one/polaris/polaris.c b/c/src/point_one/polaris/polaris.c index c7e70cf..2030043 100644 --- a/c/src/point_one/polaris/polaris.c +++ b/c/src/point_one/polaris/polaris.c @@ -485,7 +485,7 @@ int Polaris_SendECEFPosition(PolarisContext_t* context, double x_m, double y_m, } #ifdef POLARIS_USE_TLS else if (context->ssl_ctx == NULL || context->ssl == NULL) { - P1_Print("Error: Polaris SSL connection not established.\n"); + P1_Print("Error: Polaris SSL context not available.\n"); return POLARIS_SOCKET_ERROR; } #endif @@ -535,7 +535,7 @@ int Polaris_SendLLAPosition(PolarisContext_t* context, double latitude_deg, } #ifdef POLARIS_USE_TLS else if (context->ssl_ctx == NULL || context->ssl == NULL) { - P1_Print("Error: Polaris SSL connection not established.\n"); + P1_Print("Error: Polaris SSL context not available.\n"); return POLARIS_SOCKET_ERROR; } #endif @@ -587,7 +587,7 @@ int Polaris_RequestBeacon(PolarisContext_t* context, const char* beacon_id) { } #ifdef POLARIS_USE_TLS else if (context->ssl_ctx == NULL || context->ssl == NULL) { - P1_Print("Error: Polaris SSL connection not established.\n"); + P1_Print("Error: Polaris SSL context not available.\n"); return POLARIS_SOCKET_ERROR; } #endif