Skip to content

Instantly share code, notes, and snippets.

@mattrude
Last active August 29, 2015 14:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mattrude/70baf87e23efb95a0188 to your computer and use it in GitHub Desktop.
Save mattrude/70baf87e23efb95a0188 to your computer and use it in GitHub Desktop.
Add a 2nd space between the sum and the file
Subject: [PATCH] Add a 2nd space between the sum and the file
---
sksdump.ml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sksdump.ml b/sksdump.ml
index feee6bb..6213e8b 100644
--- a/sksdump.ml
+++ b/sksdump.ml
@@ -99,7 +99,7 @@ struct
fprintf file "#Key-Count: %d\n" numkey;
fprintf file "#Digest-algo: md5\n";
while !c < ctr do
- fprintf file "%s %s-%04d.pgp\n" (Digest.to_hex(
+ fprintf file "%s %s-%04d.pgp\n" (Digest.to_hex(
Digest.file (Filename.concat dumpdir (sprintf "%s-%04d.pgp" name !c))))
name !c;
incr c
--
1.9.1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment