Skip to content

Commit

Permalink
Merge pull request #7 from aquila1968/configSSLCacertFix
Browse files Browse the repository at this point in the history
fixed issue with cacertname
  • Loading branch information
gasagna authored Sep 25, 2024
2 parents d7274ab + a9adb24 commit f3e649f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/ssl.h
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class SSLCommands {

// CSSLCFG cacert
int8_t configSSLCacert(uint8_t ssl_ctx_index, const char* ca_file) {
_serial.sendCMD("AT+CSSLCFG=\"cacert\",", ssl_ctx_index, ",", ca_file);
_serial.sendCMD("AT+CSSLCFG=\"cacert\",", ssl_ctx_index, ",\"", ca_file, "\"");
A76XX_RESPONSE_PROCESS(_serial.waitResponse());
}

Expand Down

0 comments on commit f3e649f

Please sign in to comment.