Fix two spelling error
thx dnordenberg to notice them
Modified: trunk/reactos/subsys/system/cmd/En.rc
_____
Modified: trunk/reactos/subsys/system/cmd/En.rc
--- trunk/reactos/subsys/system/cmd/En.rc 2005-05-12 11:54:08 UTC
(rev 15237)
+++ trunk/reactos/subsys/system/cmd/En.rc 2005-05-12 16:44:39 UTC
(rev 15238)
@@ -360,7 +360,7 @@
STRING_REN_HELP1, "Renames a file/directory or files/directories.\n\n\
RENAME [/E /N /P /Q /S /T] old_name ... new_name\n\
REN [/E /N /P /Q /S /T] old_name ... new_name\n\n\
- /E No eror messages.\n\
+ /E No error messages.\n\
/N Nothing.\n\
/P Prompts for confirmation before renaming each file.\n\
(Not implemented yet!)\n\
@@ -416,7 +416,7 @@
/S Split time. Return stopwatch split\n\
time without changing its value\n\
/n Specifiy the stopwach number.\n\
- Stopwaches avaliable are 0 to 10\n\
+ Stopwaches avaliable are 0 to 9\n\
If it is not specified default is 1\n\
/Fn Format for output\n\
n can be:\n\
Support getting the boot drive from the BIOS or the value in the BPB.
Modified: trunk/reactos/boot/freeldr/bootsect/fat.asm
_____
Modified: trunk/reactos/boot/freeldr/bootsect/fat.asm
--- trunk/reactos/boot/freeldr/bootsect/fat.asm 2005-05-11 20:58:40 UTC
(rev 15232)
+++ trunk/reactos/boot/freeldr/bootsect/fat.asm 2005-05-12 02:57:13 UTC
(rev 15233)
@@ -73,7 +73,7 @@
NumberOfHeads dw 2
HiddenSectors dd 0
TotalSectorsBig dd 0
-BootDrive db 0
+BootDrive db 0xff
Reserved db 0
ExtendSig db 29h
SerialNumber dd 00000000h
@@ -89,6 +89,9 @@
mov es,ax
; Make ES correct
+ cmp BYTE [BYTE bp+BootDrive],BYTE 0xff ; If they have
specified a boot drive then use it
+ jne GetDriveParameters
+
mov [BYTE bp+BootDrive],dl ; Save
the boot drive
remove explicit bugcheck in NtOpenProcess when the caller supplies a
thread CID of -1, looks like this was added for debug purpose and
accidently committed.
Modified: trunk/reactos/ntoskrnl/ps/process.c
_____
Modified: trunk/reactos/ntoskrnl/ps/process.c
--- trunk/reactos/ntoskrnl/ps/process.c 2005-05-11 19:15:36 UTC (rev
15229)
+++ trunk/reactos/ntoskrnl/ps/process.c 2005-05-11 20:04:48 UTC (rev
15230)
@@ -874,7 +874,6 @@
if (ClientId->UniqueThread)
{
/* Get the Process */
- if (ClientId->UniqueThread == (HANDLE)-1) KEBUGCHECK(0);
DPRINT("Opening by Thread ID: %x\n",
ClientId->UniqueThread);
Status = PsLookupProcessThreadByCid(ClientId,
&Process,
Synchronisation with ibrowser source code
Modified: trunk/reactos/subsys/system/explorer/shell/webchild.cpp
_____
Modified: trunk/reactos/subsys/system/explorer/shell/webchild.cpp
--- trunk/reactos/subsys/system/explorer/shell/webchild.cpp
2005-05-11 19:13:20 UTC (rev 15228)
+++ trunk/reactos/subsys/system/explorer/shell/webchild.cpp
2005-05-11 19:15:36 UTC (rev 15229)
@@ -1,5 +1,5 @@
/*
- * Copyright 2004 Martin Fuchs
+ * Copyright 2004, 2005 Martin Fuchs
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
@@ -302,8 +302,7 @@
String WebChildWindow::jump_to_int(LPCTSTR url)
{
+ _navigator.goto_url(url);
-//@@
-
- return String();
+ return url;
}