diff --git a/src/md_acme_acct.c b/src/md_acme_acct.c index f3e043e..39f2ca0 100644 --- a/src/md_acme_acct.c +++ b/src/md_acme_acct.c @@ -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; } diff --git a/src/md_acme_acct.h b/src/md_acme_acct.h index b5bba63..bec31f8 100644 --- a/src/md_acme_acct.h +++ b/src/md_acme_acct.h @@ -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 */