Index: plugins/megaco/packet-megaco.c
===================================================================
--- plugins/megaco/packet-megaco.c	(revision 20811)
+++ plugins/megaco/packet-megaco.c	(working copy)
@@ -842,12 +842,13 @@
 						switch ( tempchar ){
 
 						case 'A':
-
+						case 'a':
 							tempchar = tvb_get_guint8(tvb, tvb_command_start_offset+1);
 
 							switch ( tempchar ){
 
 							case 'V':
+							case 'v': 
 								my_proto_tree_add_string(megaco_tree_command_line, hf_megaco_command, tvb,
 									tvb_command_start_offset, tokenlen,
 									"AuditValue");
@@ -882,11 +883,13 @@
 							break;
 
 						case 'M':
+						case 'm':
 
 							tempchar = tvb_get_guint8(tvb, tvb_command_start_offset+1);
 
 							switch ( tempchar ){
 							case 'F':
+							case 'f':
 								my_proto_tree_add_string(megaco_tree_command_line, hf_megaco_command, tvb,
 									tvb_command_start_offset, tokenlen,
 									"Modify");
@@ -938,14 +941,18 @@
 							break;
 
 						case 'S':
+						case 's':
 							tempchar = tvb_get_guint8(tvb, tvb_command_start_offset+1);
 
 							switch ( tempchar ){
 
 							case 'C':
+							case 'c':
 								my_proto_tree_add_string(megaco_tree_command_line, hf_megaco_command, tvb,
 									tvb_command_start_offset, tokenlen,
 									"ServiceChange");
+								if (check_col(pinfo->cinfo, COL_INFO) )
+									col_append_fstr(pinfo->cinfo, COL_INFO, " ServiceChange");
 								break;
 
 							default:
