Skip to content
Snippets Groups Projects
Commit 00f635d3 authored by Orivej Desh's avatar Orivej Desh Committed by Howard Chu
Browse files

ITS#8320 mdb_load: fix loading data from simple text files

mdb_load -T was supposed to read escaped text, but 21b51cb7 "Add mdb_load"
made it read hex.
parent 8297bfe0
No related branches found
No related tags found
No related merge requests found
......@@ -327,7 +327,7 @@ int main(int argc, char *argv[])
putflags = MDB_NOOVERWRITE|MDB_NODUPDATA;
break;
case 'T':
mode |= NOHDR;
mode |= NOHDR | PRINT;
break;
default:
usage();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment