s4:smbd: fix typos
authorMichael Adam <obnox@samba.org>
Mon, 11 Jun 2012 22:32:19 +0000 (00:32 +0200)
committerMichael Adam <obnox@samba.org>
Tue, 12 Jun 2012 07:21:14 +0000 (09:21 +0200)
Autobuild-User(master): Michael Adam <obnox@samba.org>
Autobuild-Date(master): Tue Jun 12 09:21:15 CEST 2012 on sn-devel-104

source4/smbd/process_single.c
source4/smbd/process_standard.c

index e1af2d48e86c0c05f659c41f1e05931b8af4e8e3..742eac1824d4e834268b7a171090183bc6c9aba5 100644 (file)
@@ -92,7 +92,7 @@ static void single_new_task(struct tevent_context *ev,
        
        /* We use 1 so we cannot collide in with cluster ids generated
         * in the accept connection above, and unlikly to collide with
-        * PIDs from process modal standard (don't run samba as
+        * PIDs from process model standard (don't run samba as
         * init) */
        new_task(ev, lp_ctx, cluster_id(1, taskid++), private_data);
 }
index 1e9b8ed8ac2999dc8880e993a4a319758875c803..dd5f9589745c8e8009af202b1c98b75ed8314c20 100644 (file)
@@ -140,7 +140,7 @@ static void standard_accept_connection(struct tevent_context *ev,
        talloc_free(c);
        talloc_free(s);
 
-       /* setup this new connection.  Cluster ID is PID based for this process modal */
+       /* setup this new connection.  Cluster ID is PID based for this process model */
        new_conn(ev, lp_ctx, sock2, cluster_id(pid, 0), private_data);
 
        /* we can't return to the top level here, as that event context is gone,
@@ -190,7 +190,7 @@ static void standard_new_task(struct tevent_context *ev,
 
        setproctitle("task %s server_id[%d]", service_name, (int)pid);
 
-       /* setup this new task.  Cluster ID is PID based for this process modal */
+       /* setup this new task.  Cluster ID is PID based for this process model */
        new_task(ev, lp_ctx, cluster_id(pid, 0), private_data);
 
        /* we can't return to the top level here, as that event context is gone,