# HG changeset patch # User Mychaela Falconia # Date 1614187923 0 # Node ID 878d66dce6d377812952c97929fe895d4de51fbb # Parent a1aa8ee2da8563a58304bc6405635a9716477595 fc-uicc-tool create-file needs to read the hex voodoo from a file diff -r a1aa8ee2da85 -r 878d66dce6d3 uicc/createfile.c --- a/uicc/createfile.c Wed Feb 24 17:25:28 2021 +0000 +++ b/uicc/createfile.c Wed Feb 24 17:32:03 2021 +0000 @@ -18,7 +18,7 @@ unsigned len1, len2; int rc; - rc = decode_hex_data_from_string(argv[1], inbuf, 1, 252); + rc = read_hex_data_file(argv[1], inbuf, 252); if (rc < 0) return(rc); len1 = rc;