MINOR: channel/stconn: Replace channel_shutr_now() by sc_schedule_abort()
After the flag renaming, it is now the turn for the channel function to be
renamed and moved in the SC scope. channel_shutr_now() is replaced by
sc_schedule_abort(). The request channel is replaced by the front SC and the
response is replace by the back SC.
diff --git a/src/cli.c b/src/cli.c
index 0de6203..f3562ae 100644
--- a/src/cli.c
+++ b/src/cli.c
@@ -2360,7 +2360,7 @@
return argl; /* return the number of elements in the array */
} else if (strcmp("quit", args[0]) == 0) {
- channel_shutr_now(&s->req);
+ sc_schedule_abort(s->scf);
channel_shutw_now(&s->res);
return argl; /* return the number of elements in the array */
} else if (strcmp(args[0], "operator") == 0) {