Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/md_acme_acct.c
Original file line number Diff line number Diff line change
Expand Up @@ -284,8 +284,8 @@ static int find_acct(void *baton, const char *name, const char *aspect,
if (MD_ACME_ACCT_ST_VALID == acct->status
&& (!ctx->md || md_acme_acct_matches_md(acct, ctx->md))) {
md_log_perror(MD_LOG_MARK, MD_LOG_DEBUG, 0, ctx->p,
"found account %s for %s: %s, status=%d",
acct->id, ctx->md->ca_effective, aspect, acct->status);
"found account for %s: %s, status=%d",
ctx->md->ca_effective, aspect, acct->status);
ctx->id = apr_pstrdup(ctx->p, name);
return 0;
}
Expand Down
1 change: 0 additions & 1 deletion src/md_acme_acct.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ typedef enum {
} md_acme_acct_st;

struct md_acme_acct_t {
const char *id; /* short, unique id for the account */
const char *url; /* url of the account, once registered */
const char *ca_url; /* url of the ACME protocol endpoint */
md_acme_acct_st status; /* status of this account */
Expand Down
Loading