Skip to content
Snippets Groups Projects
Commit b4e10d39 authored by Julian Rother's avatar Julian Rother
Browse files

hashfile: Removed prefix for compatability

parent 48599eac
No related branches found
No related tags found
No related merge requests found
...@@ -28,7 +28,6 @@ char *hashfile(char *path) ...@@ -28,7 +28,6 @@ char *hashfile(char *path)
av_free(ctx); av_free(ctx);
if (!(stream = open_memstream(&ptr, &size))) if (!(stream = open_memstream(&ptr, &size)))
exit(99); exit(99);
fprintf(stream, "md5:");
for (i = 0; i < 16; i ++) for (i = 0; i < 16; i ++)
fprintf(stream, "%02hhx", buf[i]); fprintf(stream, "%02hhx", buf[i]);
free(buf); free(buf);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment