diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index ce475e76b9cfc690d31509b4fefd9fc7bb41b3ee..ed691c6508f44a4538fa792d7196470d9465584b 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -12217,7 +12217,7 @@ static char *sip_show_history(struct ast_cli_entry *e, int cmd, struct ast_cli_a
 		e->command = "sip show history";
 		e->usage =
 			"Usage: sip show history <call-id>\n"
-			"       Provides detailed dialog history on a given SIP call (specified by call-hid).\n";
+			"       Provides detailed dialog history on a given SIP call (specified by call-id).\n";
 		return NULL;
 	case CLI_GENERATE:
 		return complete_sip_show_history(a->line, a->word, a->pos, a->n);
diff --git a/include/asterisk/channel.h b/include/asterisk/channel.h
index 812c01a43cc6961b5197e06665ba00e985ed595a..68206f6a34217e0d32507e13f22b28738e4802c5 100644
--- a/include/asterisk/channel.h
+++ b/include/asterisk/channel.h
@@ -207,9 +207,6 @@ struct ast_datastore {
  * SIP and IAX2 has utf8 encoded Unicode caller ID names.
  * In some cases, we also have an alternative (RPID) E.164 number that can be used
  * as caller ID on numeric E.164 phone networks (zaptel or SIP/IAX2 to pstn gateway).
-
- * SIP and IAX2 will prefer the cid_utf8 if it exists, otherwise use the cid_name.
- * \todo Implement this in chan_sip.c and chan_iax2.c
  *
  * \todo Implement settings for transliteration between UTF8 caller ID names in
  *       to Ascii Caller ID's (Zaptel). �sten �sklund might be transliterated into
@@ -223,9 +220,6 @@ struct ast_callerid {
 	char *cid_name;		/*!< Malloc'd Caller Name (ASCII) */
 	char *cid_ani;		/*!< Malloc'd ANI */
 	char *cid_rdnis;	/*!< Malloc'd RDNIS */
-	char *cid_utf8;		/*!< Malloc'd Caller ID name in utf8 */
-	char *cid_domain;	/*!< Malloc'd Caller ID domain (ascii. IDN supported) */
-	char *cid_e164;		/*!< Malloc'd Alternative Caller ID E.164 (alternative to SIP/IAX2 utf8 uri, RPID) */
 	int cid_pres;		/*!< Callerid presentation/screening */
 	int cid_ani2;		/*!< Callerid ANI 2 (Info digits) */
 	int cid_ton;		/*!< Callerid Type of Number */