1
0
Fork 0
Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@2787
This commit is contained in:
Sebastian Strohhäcker 2007-01-26 16:22:43 +00:00
parent 87cd8a180e
commit 79c55d9ebf

View file

@ -16,7 +16,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
/* $Id: dos_programs.cpp,v 1.66 2007-01-21 16:21:22 c2woody Exp $ */
/* $Id: dos_programs.cpp,v 1.67 2007-01-26 16:22:43 c2woody Exp $ */
#include <stdlib.h>
#include <string.h>
@ -937,12 +937,12 @@ public:
temp_line = tmp;
if (stat(temp_line.c_str(),&test)) {
WriteOut(MSG_Get("PROGRAM_IMGMOUNG_FILE_NOT_FOUND"));
WriteOut(MSG_Get("PROGRAM_IMGMOUNT_FILE_NOT_FOUND"));
return;
}
if ((test.st_mode & S_IFDIR)) {
WriteOut(MSG_Get("PROGRAM_IMGMOUNG_MOUNT"));
WriteOut(MSG_Get("PROGRAM_IMGMOUNT_MOUNT"));
return;
}
}