X-Git-Url: http://cvs.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/838198455640d9339e91b31817ac5a9ae5d609a9..33984c6a824dffd900f665ed9c3980072c54e784:/client/cmddata.c?ds=sidebyside diff --git a/client/cmddata.c b/client/cmddata.c index aa59edc9..c1099600 100644 --- a/client/cmddata.c +++ b/client/cmddata.c @@ -476,9 +476,9 @@ int CmdSamples(const char *Cmd) int CmdLoad(const char *Cmd) { - FILE *f = fopen(Cmd, "r"); + FILE *f = fopen(Cmd + 1, "r"); if (!f) { - PrintAndLog("couldn't open '%s'", Cmd); + PrintAndLog("couldn't open '%s'", Cmd + 1); return 0; }