Typographic errors fixed and a function name changed.
Modified: trunk/reactos/lib/smdll/execpgm.c
Modified: trunk/reactos/lib/smdll/readme.txt
Modified: trunk/reactos/lib/smdll/smdll.def

Modified: trunk/reactos/lib/smdll/execpgm.c
--- trunk/reactos/lib/smdll/execpgm.c	2005-02-07 12:58:08 UTC (rev 13460)
+++ trunk/reactos/lib/smdll/execpgm.c	2005-02-07 23:11:30 UTC (rev 13461)
@@ -12,7 +12,7 @@
 #include <string.h>
 
 NTSTATUS STDCALL
-SmExecPgm (HANDLE hSmApiPort, PUNICODE_STRING Pgm)
+SmExecuteProgram (HANDLE hSmApiPort, PUNICODE_STRING Pgm)
 {
   NTSTATUS         Status;
   SM_PORT_MESSAGE  SmReqMsg;

Modified: trunk/reactos/lib/smdll/readme.txt
--- trunk/reactos/lib/smdll/readme.txt	2005-02-07 12:58:08 UTC (rev 13460)
+++ trunk/reactos/lib/smdll/readme.txt	2005-02-07 23:11:30 UTC (rev 13461)
@@ -4,11 +4,11 @@
 
 It should be linked in the following components:
 
-a) the SM itself, because iy registers for managing native processes
+a) the SM itself, because it registers for managing native processes
    IMAGE_SUBSYSTEM_NATIVE;
 
 b) environment subsystem servers, because each one should register in
-   the SM its own subsystem (willing to manageg those processes);
+   the SM its own subsystem (willing to manage those processes);
 
 c) terminal emulators for optional subsystems, like posixw32 and os2w32,
    to ask the SM to start the optional subsystem server they need connect to;

Modified: trunk/reactos/lib/smdll/smdll.def
--- trunk/reactos/lib/smdll/smdll.def	2005-02-07 12:58:08 UTC (rev 13460)
+++ trunk/reactos/lib/smdll/smdll.def	2005-02-07 23:11:30 UTC (rev 13461)
@@ -2,4 +2,4 @@
 EXPORTS
 SmCompleteSession@12
 SmConnectApiPort@16
-SmExecPgm@8
\ No newline at end of file
+SmExecuteProgram@8