aboutsummaryrefslogtreecommitdiffstats
path: root/lib/rpcs16.cc
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rpcs16.cc')
-rw-r--r--lib/rpcs16.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rpcs16.cc b/lib/rpcs16.cc
index 57963e2..6e196fc 100644
--- a/lib/rpcs16.cc
+++ b/lib/rpcs16.cc
@@ -52,7 +52,7 @@ queryDrive(char drive, bufferArray &ret)
a.addByte(drive);
if (!sendCommand(rpcs::QUERY_DRIVE, a))
return rfsv::E_PSI_FILE_DISC;
- Enum<rfsv::errs> res = getResponse(a);
+ Enum<rfsv::errs> res = getResponse(a, true);
cout << dec << "qd: " << res << " " << a.getLen() << " a="<< a << endl;
return res;
}