Remove fearmongering message for latest SEP/BB (#22)

This commit is contained in:
Richard 2021-06-03 00:17:26 +02:00 committed by GitHub
parent c6ae077da7
commit 893efffdcc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -246,7 +246,7 @@ int main_r(int argc, const char * argv[]) {
devVals.deviceBoard = (char*)client.getDeviceBoardNoCopy();
if (flags & FLAG_LATEST_SEP){
info("user specified to use latest signed SEP (WARNING, THIS CAN CAUSE A NON-WORKING RESTORE)\n");
info("user specified to use latest signed SEP\n");
client.loadLatestSep();
}else if (!client.is32bit()){
client.loadSep(sepPath);
@ -270,7 +270,7 @@ int main_r(int argc, const char * argv[]) {
printf("\n");
}else{
if (flags & FLAG_LATEST_BASEBAND){
info("user specified to use latest signed baseband (WARNING, THIS CAN CAUSE A NON-WORKING RESTORE)\n");
info("user specified to use latest signed baseband\n");
client.loadLatestBaseband();
}else{
client.setBasebandPath(basebandPath);