Commit beb01ef8 authored by Rusty Russell's avatar Rusty Russell

crcsync: use tal/grab_file in _info example.

Signed-off-by: default avatarRusty Russell <rusty@rustcorp.com.au>
parent fbad46cd
......@@ -12,7 +12,8 @@
* // Calculate checksums of file (3-arg mode)
* // Or print differences between file and checksums (4+ arg mode)
* #include <ccan/crcsync/crcsync.h>
* #include <ccan/grab_file/grab_file.h>
* #include <ccan/tal/grab_file/grab_file.h>
* #include <ccan/tal/tal.h>
* #include <stdio.h>
* #include <stdlib.h>
* #include <err.h>
......@@ -37,10 +38,11 @@
* errx(1, "Usage: %s <blocksize> <file> <crc>...\n"
* "OR: %s <blocksize> <file>", argv[0], argv[0]);
*
* file = grab_file(NULL, argv[2], &len);
* file = grab_file(NULL, argv[2]);
* if (!file)
* err(1, "Opening file %s", argv[2]);
*
* len = tal_count(file) - 1;
*
* if (argc == 3) {
* // Short form prints CRCs of file for use in long form.
* used = (len + blocksize - 1) / blocksize;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment