diff options
author | Paul Selkirk <paul@psgd.org> | 2018-09-04 23:46:09 -0400 |
---|---|---|
committer | Paul Selkirk <paul@psgd.org> | 2018-09-04 23:46:09 -0400 |
commit | 01534a93197f3b1610865dd5601634549423f292 (patch) | |
tree | 82643a4374a944e4392c6f454d31d89ac6333788 /libraries/libcli/Makefile | |
parent | 322e272c90488adb65edc6b0bd1ebab442f435d5 (diff) |
Make parsing and display of masterkey values consistent with one another,
so the user might be able to copy and paste a generated key into the CLI
for recovery.
Display had been a 32-byte hexdump. Parsing (manual re-entry of the KEK)
had been 8 32-bit little-endian values. This has been a pain point for
literally two years, albeit at a low enough pain level that I've managed
to cringe and ignore it.
Diffstat (limited to 'libraries/libcli/Makefile')
-rw-r--r-- | libraries/libcli/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libraries/libcli/Makefile b/libraries/libcli/Makefile index cd1d3b6..6bc805a 100644 --- a/libraries/libcli/Makefile +++ b/libraries/libcli/Makefile @@ -11,7 +11,8 @@ CFLAGS += \ -DDO_REGULAR=0 \ -DDO_SOCKET=0 \ -DDO_TAB_COMPLETION=1 \ - -DDO_TELNET=0 + -DDO_TELNET=0 \ + -DCLI_MAX_LINE_WORDS=36 CFLAGS += -Wno-unused-parameter all: libcli.a |