Skip to content
Snippets Groups Projects
Commit 7793c0dc authored by Stephan Bosch's avatar Stephan Bosch
Browse files

lib-sieve: plugins: metadata: Reformat tst-metadataexists.c.

parent 22e3c512
No related branches found
No related tags found
No related merge requests found
...@@ -90,7 +90,7 @@ const struct sieve_operation_def metadataexists_operation = { ...@@ -90,7 +90,7 @@ const struct sieve_operation_def metadataexists_operation = {
.ext_def = &mboxmetadata_extension, .ext_def = &mboxmetadata_extension,
.code = EXT_METADATA_OPERATION_METADATAEXISTS, .code = EXT_METADATA_OPERATION_METADATAEXISTS,
.dump = tst_metadataexists_operation_dump, .dump = tst_metadataexists_operation_dump,
.execute = tst_metadataexists_operation_execute .execute = tst_metadataexists_operation_execute,
}; };
/* Mailboxexists operation */ /* Mailboxexists operation */
...@@ -100,7 +100,7 @@ const struct sieve_operation_def servermetadataexists_operation = { ...@@ -100,7 +100,7 @@ const struct sieve_operation_def servermetadataexists_operation = {
.ext_def = &servermetadata_extension, .ext_def = &servermetadata_extension,
.code = EXT_METADATA_OPERATION_METADATAEXISTS, .code = EXT_METADATA_OPERATION_METADATAEXISTS,
.dump = tst_metadataexists_operation_dump, .dump = tst_metadataexists_operation_dump,
.execute = tst_metadataexists_operation_execute .execute = tst_metadataexists_operation_execute,
}; };
/* /*
...@@ -362,14 +362,15 @@ tst_metadataexists_operation_execute(const struct sieve_runtime_env *renv, ...@@ -362,14 +362,15 @@ tst_metadataexists_operation_execute(const struct sieve_runtime_env *renv,
/* Read mailbox */ /* Read mailbox */
if (metadata) { if (metadata) {
if ((ret = sieve_opr_string_read(renv, address, "mailbox", ret = sieve_opr_string_read(renv, address, "mailbox", &mailbox);
&mailbox)) <= 0) if (ret <= 0)
return ret; return ret;
} }
/* Read annotation names */ /* Read annotation names */
if ((ret = sieve_opr_stringlist_read(renv, address, "annotation-names", ret = sieve_opr_stringlist_read(renv, address, "annotation-names",
&anames)) <= 0) &anames);
if (ret <= 0)
return ret; return ret;
/* /*
...@@ -400,9 +401,9 @@ tst_metadataexists_operation_execute(const struct sieve_runtime_env *renv, ...@@ -400,9 +401,9 @@ tst_metadataexists_operation_execute(const struct sieve_runtime_env *renv,
trace = sieve_runtime_trace_active(renv, SIEVE_TRLVL_MATCHING); trace = sieve_runtime_trace_active(renv, SIEVE_TRLVL_MATCHING);
} }
if ((ret = tst_metadataexists_check_annotations( ret = tst_metadataexists_check_annotations(
renv, (metadata ? str_c(mailbox) : NULL), anames, renv, (metadata ? str_c(mailbox) : NULL), anames, &all_exist);
&all_exist)) <= 0) if (ret <= 0)
return ret; return ret;
if (trace) { if (trace) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment

Consent

On this website, we use the web analytics service Matomo to analyze and review the use of our website. Through the collected statistics, we can improve our offerings and make them more appealing for you. Here, you can decide whether to allow us to process your data and set corresponding cookies for these purposes, in addition to technically necessary cookies. Further information on data protection—especially regarding "cookies" and "Matomo"—can be found in our privacy policy. You can withdraw your consent at any time.