Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
estkme committed Aug 17, 2024
1 parent e6b32e1 commit b11878f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion euicc/es8p.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#include "hexutil.h"
#include "base64.h"

int es8p_meatadata_parse(struct es8p_metadata **stru_metadata, const char *b64_Metadata)
int es8p_metadata_parse(struct es8p_metadata **stru_metadata, const char *b64_Metadata)
{
int ret;
uint8_t *metadata = NULL;
Expand Down
2 changes: 1 addition & 1 deletion euicc/es8p.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@ struct es8p_metadata
char **profilePolicyRules;
};

int es8p_meatadata_parse(struct es8p_metadata **metadata, const char *b64_Metadata);
int es8p_metadata_parse(struct es8p_metadata **metadata, const char *b64_Metadata);
void es8p_metadata_free(struct es8p_metadata **stru_metadata);
2 changes: 1 addition & 1 deletion src/applet/profile/download.c
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ static int applet_main(int argc, char **argv)
// preview here
if (euicc_ctx.http._internal.prepare_download_param->b64_profileMetadata)
{
if (BREAKABLE(es8p_meatadata_parse(&profile_metadata, euicc_ctx.http._internal.prepare_download_param->b64_profileMetadata)))
if (BREAKABLE(es8p_metadata_parse(&profile_metadata, euicc_ctx.http._internal.prepare_download_param->b64_profileMetadata)))
{
error_function_name = "es8p_meatadata_parse";
error_detail = NULL;
Expand Down

0 comments on commit b11878f

Please sign in to comment.