From 5f22be643cfd50b7390778397a911fcedef32796 Mon Sep 17 00:00:00 2001 From: Jose Marcial Vieira Bisneto Date: Fri, 23 Dec 2016 00:46:31 -0300 Subject: [PATCH] Commented missing implementation at path. --- path/path.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/path/path.c b/path/path.c index 11e6fc8..1f85a83 100644 --- a/path/path.c +++ b/path/path.c @@ -7,7 +7,7 @@ char* ipfs_path_from_cid (struct Cid *c) { const char prefix[] = "/ipfs/"; - char *rpath, *cidstr = CidString(c); + char *rpath, *cidstr;// = CidString(c); int l; l = sizeof(prefix) + strlen(cidstr); @@ -224,7 +224,7 @@ int ipfs_path_parse_from_cid (char *dst, char *txt) if (!txt || txt[0] == '\0') return ErrNoComponents; - c = cidDecode(txt); + //c = cidDecode(txt); if (!c) { return ErrCidDecode;