diff --git a/include/asterisk/manager.h b/include/asterisk/manager.h
index 31f31b7f070c18c189c17fe4969f27798ac56be0..43031d1d63a095cab4e0b8a44f63771ed893f5f0 100644
--- a/include/asterisk/manager.h
+++ b/include/asterisk/manager.h
@@ -305,7 +305,7 @@ void astman_send_ack(struct mansession *s, const struct message *m, char *msg);
  * \param s - AMI session control struct.
  * \param m - AMI action request that started the list.
  * \param msg - Message contents describing the list to follow.
- * \param listflag - Not used.  Historically always set to "start".
+ * \param listflag - Should always be set to "start".
  *
  * \note You need to call astman_send_list_complete_start() and
  * astman_send_list_complete_end() to send the AMI list completion event.
diff --git a/main/manager.c b/main/manager.c
index 3e4146146b8108cbc3f2b1f7766c4957e590951c..29a8a83e9db3c1a444fc77d5460d4868ec073674 100644
--- a/main/manager.c
+++ b/main/manager.c
@@ -2913,7 +2913,7 @@ static void astman_start_ack(struct mansession *s, const struct message *m)
 
 void astman_send_listack(struct mansession *s, const struct message *m, char *msg, char *listflag)
 {
-	astman_send_response_full(s, m, "Success", msg, "Start");
+	astman_send_response_full(s, m, "Success", msg, listflag);
 }
 
 void astman_send_list_complete_start(struct mansession *s, const struct message *m, const char *event_name, int count)
@@ -3358,7 +3358,7 @@ static int action_getconfig(struct mansession *s, const struct message *m)
 	}
 
 	if (!ast_strlen_zero(category) && catcount == 0) { /* TODO: actually, a config with no categories doesn't even get loaded */
-		astman_append(s, "Error: No categories found\r\n");
+		astman_append(s, "No categories found\r\n");
 	}
 
 	ast_config_destroy(cfg);
@@ -3396,7 +3396,7 @@ static int action_listcategories(struct mansession *s, const struct message *m)
 	}
 
 	if (catcount == 0) { /* TODO: actually, a config with no categories doesn't even get loaded */
-		astman_append(s, "Error: No categories found\r\n");
+		astman_append(s, "Error: no categories found\r\n");
 	}
 
 	ast_config_destroy(cfg);