[TRANSLATION][CLIPBRD] Italian translation implemented (#344)
[reactos.git] / base / system / smss / smloop.c
index 3aaa06c..ff5067a 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * PROJECT:         ReactOS Windows-Compatible Session Manager
  * LICENSE:         BSD 2-Clause License
- * FILE:            base/system/smss/smss.c
+ * FILE:            base/system/smss/smloop.c
  * PURPOSE:         Main SMSS Code
  * PROGRAMMERS:     Alex Ionescu
  */
@@ -222,7 +222,7 @@ SmpHandleConnectionRequest(IN HANDLE SmApiPort,
         SmpGetProcessMuSessionId(ProcessHandle, &SessionId);
     }
 
-    /* See if we already know about the caller's subystem */
+    /* See if we already know about the caller's subsystem */
     CidSubsystem = SmpLocateKnownSubSysByCid(&SbApiMsg->h.ClientId);
     if ((CidSubsystem) && (Accept))
     {
@@ -380,7 +380,7 @@ SmpApiLoop(IN PVOID Parameter)
             case LPC_CONNECTION_REQUEST:
                 /* Create the right structures for it */
                 SmpHandleConnectionRequest(SmApiPort, (PSB_API_MSG)&RequestMsg);
-                ReplyMsg =  NULL;
+                ReplyMsg = NULL;
                 break;
 
             /* A closed connection */
@@ -423,7 +423,7 @@ SmpApiLoop(IN PVOID Parameter)
                                                                   SmApiPort);
                 }
 
-                /* Write the result valud and return the message back */
+                /* Write the result value and return the message back */
                 RequestMsg.ReturnValue = Status;
                 ReplyMsg = &RequestMsg;
                 break;