Browse code

clambc info option updated for new hook type

Kevin Lin authored on 2015/03/04 06:12:22
Showing 1 changed files
... ...
@@ -2963,7 +2963,13 @@ void cli_bytecode_describe(const struct cli_bc *bc)
2963 2963
 	    puts("logical only");
2964 2964
 	    break;
2965 2965
 	case BC_PE_UNPACKER:
2966
-	    puts("PE hook");
2966
+	    puts("PE unpacker hook");
2967
+	    break;
2968
+    case BC_PE_ALL:
2969
+        puts("all PE hook");
2970
+        break;
2971
+    case BC_PRECLASS:
2972
+        puts("preclass hook");
2967 2973
 	    break;
2968 2974
 	default:
2969 2975
 	    printf("Unknown (type %u)", bc->kind);