Skip to content

Commit

Permalink
Disable function autonaming to avoid confusions ##anal
Browse files Browse the repository at this point in the history
  • Loading branch information
radare authored and Maijin committed Feb 18, 2019
1 parent 73f76a9 commit 2dc2de3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libr/core/cconfig.c
Original file line number Diff line number Diff line change
Expand Up @@ -2607,7 +2607,7 @@ R_API int r_core_config_init(RCore *core) {
SETICB ("anal.graph_depth", 256, &cb_analgraphdepth, "Max depth for path search");
SETICB ("anal.sleep", 0, &cb_analsleep, "Sleep N usecs every so often during analysis. Avoid 100% CPU usage");
SETPREF ("anal.calls", "false", "Make basic af analysis walk into calls");
SETPREF ("anal.autoname", "true", "Speculatively set a name for the functions, may result in some false positives");
SETPREF ("anal.autoname", "false", "Speculatively set a name for the functions, may result in some false positives");
SETPREF ("anal.hasnext", "false", "Continue analysis after each function");
SETPREF ("anal.esil", "false", "Use the new ESIL code analysis");
SETCB ("anal.strings", "false", &cb_analstrings, "Identify and register strings during analysis (aar only)");
Expand Down

0 comments on commit 2dc2de3

Please sign in to comment.