CLEANUP: ssl/cli: stop using appctx->st2 for "commit ssl ca/crl"

A new entry "state" was added into the commit_cacrl_ctx struct instead.
diff --git a/src/ssl_ckch.c b/src/ssl_ckch.c
index f62ae94..fd36545 100644
--- a/src/ssl_ckch.c
+++ b/src/ssl_ckch.c
@@ -127,6 +127,12 @@
 	struct ckch_inst_link *next_ckchi_link;
 	struct ckch_inst *next_ckchi;
 	int cafile_type; /* either CA or CRL, depending on the current command */
+	enum {
+		CACRL_ST_INIT = 0,
+		CACRL_ST_GEN,
+		CACRL_ST_INSERT,
+		CACRL_ST_FIN,
+	} state;
 };
 
 
@@ -2727,7 +2733,7 @@
 		goto error;
 	}
 	/* init the appctx structure */
-	appctx->st2 = SETCERT_ST_INIT;
+	ctx->state = CACRL_ST_INIT;
 	ctx->next_ckchi_link = NULL;
 	ctx->old_cafile_entry = cafile_transaction.old_cafile_entry;
 	ctx->new_cafile_entry = cafile_transaction.new_cafile_entry;
@@ -2799,8 +2805,8 @@
 		goto error;
 
 	while (1) {
-		switch (appctx->st2) {
-			case SETCERT_ST_INIT:
+		switch (ctx->state) {
+			case CACRL_ST_INIT:
 				/* This state just print the update message */
 				switch (ctx->cafile_type) {
 				case CAFILE_CERT:
@@ -2816,9 +2822,9 @@
 					cs_rx_room_blk(cs);
 					goto yield;
 				}
-				appctx->st2 = SETCERT_ST_GEN;
+				ctx->state = CACRL_ST_GEN;
 				/* fallthrough */
-			case SETCERT_ST_GEN:
+			case CACRL_ST_GEN:
 				/*
 				 * This state generates the ckch instances with their
 				 * sni_ctxs and SSL_CTX.
@@ -2861,9 +2867,9 @@
 					}
 				}
 
-				appctx->st2 = SETCERT_ST_INSERT;
+				ctx->state = CACRL_ST_INSERT;
 				/* fallthrough */
-			case SETCERT_ST_INSERT:
+			case CACRL_ST_INSERT:
 				/* The generation is finished, we can insert everything */
 				switch (ctx->cafile_type) {
 				case CAFILE_CERT:
@@ -2900,9 +2906,9 @@
 				ebmb_delete(&old_cafile_entry->node);
 				ssl_store_delete_cafile_entry(old_cafile_entry);
 
-				appctx->st2 = SETCERT_ST_FIN;
+				ctx->state = CACRL_ST_FIN;
 				/* fallthrough */
-			case SETCERT_ST_FIN:
+			case CACRL_ST_FIN:
 				/* we achieved the transaction, we can set everything to NULL */
 				switch (ctx->cafile_type) {
 				case CAFILE_CERT:
@@ -2999,7 +3005,7 @@
 {
 	struct commit_cacrlfile_ctx *ctx = appctx->svcctx;
 
-	if (appctx->st2 != SETCERT_ST_FIN) {
+	if (ctx->state != CACRL_ST_FIN) {
 		struct cafile_entry *new_cafile_entry = ctx->new_cafile_entry;
 
 		/* Remove the uncommitted cafile_entry from the tree. */
@@ -3475,7 +3481,7 @@
 		goto error;
 	}
 	/* init the appctx structure */
-	appctx->st2 = SETCERT_ST_INIT;
+	ctx->state = CACRL_ST_INIT;
 	ctx->next_ckchi = NULL;
 	ctx->old_crlfile_entry = crlfile_transaction.old_crlfile_entry;
 	ctx->new_crlfile_entry = crlfile_transaction.new_crlfile_entry;
@@ -3499,7 +3505,7 @@
 {
 	struct commit_cacrlfile_ctx *ctx = appctx->svcctx;
 
-	if (appctx->st2 != SETCERT_ST_FIN) {
+	if (ctx->state != CACRL_ST_FIN) {
 		struct cafile_entry *new_crlfile_entry = ctx->new_crlfile_entry;
 
 		/* Remove the uncommitted cafile_entry from the tree. */