Message update

This commit is contained in:
Uwe Seimet 2021-08-04 15:38:24 +02:00
parent 9c0811f4bf
commit bb5c19ca1d

View File

@ -181,10 +181,10 @@ void CommandServerInfo(const string& hostname, int port)
cout << "rascsi log level: " << serverInfo.log_level() << endl;
cout << "Default image file folder: " << serverInfo.default_image_folder() << endl;
if (!serverInfo.available_images_size()) {
cout << "No image files available" << endl;
cout << "No image files available in the default folder" << endl;
}
else {
cout << "Available image files:" << endl;
cout << "Image files available in the default folder:" << endl;
for (int i = 0; i < serverInfo.available_images_size(); i++) {
cout << " " << serverInfo.available_images(i) << endl;
}