1
1
Fork 0
mirror of https://github.com/pbatard/rufus.git synced 2024-08-14 23:57:05 +00:00

Spelling: success

This commit is contained in:
Josh Soref 2013-06-20 11:40:14 -04:00
parent 28732215da
commit d9fb325b34
4 changed files with 8 additions and 8 deletions

View file

@ -280,7 +280,7 @@ static BOOL ExtractFAT(int entry, const char* path)
} }
safe_closehandle(hFile); safe_closehandle(hFile);
uprintf("Succesfully wrote '%s' (%d bytes)\n", filename, filesize); uprintf("Successfully wrote '%s' (%d bytes)\n", filename, filesize);
return TRUE; return TRUE;
} }
@ -396,7 +396,7 @@ BOOL ExtractFreeDOS(const char* path)
// thus we would need to have a separate header with each file's timestamps // thus we would need to have a separate header with each file's timestamps
safe_closehandle(hFile); safe_closehandle(hFile);
uprintf("Succesfully wrote '%s' (%d bytes)\n", filename, res_size); uprintf("Successfully wrote '%s' (%d bytes)\n", filename, res_size);
if ((i == 4) || (i == 10) || (i == 16) || (i == 22) || (i == ARRAYSIZE(res_name)-1)) if ((i == 4) || (i == 10) || (i == 16) || (i == 22) || (i == ARRAYSIZE(res_name)-1))
UpdateProgress(OP_DOS, -1.0f); UpdateProgress(OP_DOS, -1.0f);

View file

@ -970,7 +970,7 @@ BOOL SetDOSLocale(const char* path, BOOL bFreeDOS)
fprintf(fd, "set PATH=.;\\;\\LOCALE\n"); fprintf(fd, "set PATH=.;\\;\\LOCALE\n");
fprintf(fd, "echo Using %s keyboard with %s codepage [%d]\n", kb_to_hr("us"), cp_to_hr(437), 437); fprintf(fd, "echo Using %s keyboard with %s codepage [%d]\n", kb_to_hr("us"), cp_to_hr(437), 437);
fclose(fd); fclose(fd);
uprintf("Succesfully wrote 'AUTOEXEC.BAT'\n"); uprintf("Successfully wrote 'AUTOEXEC.BAT'\n");
return TRUE; return TRUE;
} }
@ -997,7 +997,7 @@ BOOL SetDOSLocale(const char* path, BOOL bFreeDOS)
bFreeDOS?"MENU ":"MENUITEM=", bFreeDOS?')':',', kb_to_hr("us"), cp_to_hr(437), 437); bFreeDOS?"MENU ":"MENUITEM=", bFreeDOS?')':',', kb_to_hr("us"), cp_to_hr(437), 437);
fprintf(fd, "%s", bFreeDOS?"MENU\n12?\n":"[1]\ndevice=\\locale\\display.sys con=(ega,,1)\n[2]\n"); fprintf(fd, "%s", bFreeDOS?"MENU\n12?\n":"[1]\ndevice=\\locale\\display.sys con=(ega,,1)\n[2]\n");
fclose(fd); fclose(fd);
uprintf("Succesfully wrote 'CONFIG.SYS'\n"); uprintf("Successfully wrote 'CONFIG.SYS'\n");
// AUTOEXEC.BAT // AUTOEXEC.BAT
strcpy(filename, path); strcpy(filename, path);
@ -1018,7 +1018,7 @@ BOOL SetDOSLocale(const char* path, BOOL bFreeDOS)
fprintf(fd, "keyb %s,,\\locale\\%s\n", kb, kbdrv); fprintf(fd, "keyb %s,,\\locale\\%s\n", kb, kbdrv);
fprintf(fd, ":2\n"); fprintf(fd, ":2\n");
fclose(fd); fclose(fd);
uprintf("Succesfully wrote 'AUTOEXEC.BAT'\n"); uprintf("Successfully wrote 'AUTOEXEC.BAT'\n");
return TRUE; return TRUE;
} }

View file

@ -994,7 +994,7 @@ static BOOL SetupWinPE(char drive_letter)
uprintf("Failed to add SetupSourceDevice in %s\n", dst); uprintf("Failed to add SetupSourceDevice in %s\n", dst);
goto out; goto out;
} }
uprintf("Succesfully added '%s' to %s\n", setupsrcdev, dst); uprintf("Successfully added '%s' to %s\n", setupsrcdev, dst);
} }
safe_sprintf(src, sizeof(src), "%c:\\%s\\setupldr.bin", drive_letter, basedir[index]); safe_sprintf(src, sizeof(src), "%c:\\%s\\setupldr.bin", drive_letter, basedir[index]);

View file

@ -133,7 +133,7 @@ BOOL InstallSyslinux(DWORD drive_index, char drive_letter)
goto out; goto out;
} }
uprintf("Succesfully wrote '%s'\n", ldlinux_sys); uprintf("Successfully wrote '%s'\n", ldlinux_sys);
if (dt != DT_ISO) if (dt != DT_ISO)
UpdateProgress(OP_DOS, -1.0f); UpdateProgress(OP_DOS, -1.0f);
@ -203,7 +203,7 @@ BOOL InstallSyslinux(DWORD drive_index, char drive_letter)
goto out; goto out;
} }
uprintf("Succesfully wrote Syslinux boot record\n"); uprintf("Successfully wrote Syslinux boot record\n");
if (dt == DT_SYSLINUX_V5) { if (dt == DT_SYSLINUX_V5) {
fd = fopen(ldlinux_c32, "rb"); fd = fopen(ldlinux_c32, "rb");