Fix indentation

This commit is contained in:
Wilco Baan Hofman 2016-09-25 17:00:22 +02:00
parent 4d34a694b1
commit 40bc2c209c

View file

@ -33,10 +33,10 @@ STATUS jsonbot_notify(TALLOC_CTX *mem_ctx, const char *prom, const char *code, c
conf = get_conf(); conf = get_conf();
/* Ignore test reports */ /* Ignore test reports */
if (strncmp(code, "RP", 2) == 0) { if (strncmp(code, "RP", 2) == 0) {
return ST_OK; return ST_OK;
} }
aes_set_encrypt_key(&aes, strlen(conf->jsonbot_aeskey), (uint8_t *) conf->jsonbot_aeskey); aes_set_encrypt_key(&aes, strlen(conf->jsonbot_aeskey), (uint8_t *) conf->jsonbot_aeskey);