summaryrefslogtreecommitdiff
path: root/source4/smbd
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2012-06-12 00:32:19 +0200
committerMichael Adam <obnox@samba.org>2012-06-12 09:21:14 +0200
commit25216d753742c68fc921b84208c0a92b958c15c9 (patch)
treed9348cc6a4577065a147972bff79bb37468e11ef /source4/smbd
parent23a73c51acf33f7c5473cf6bd1b93dcf05c0d880 (diff)
downloadsamba-25216d753742c68fc921b84208c0a92b958c15c9.tar.gz
samba-25216d753742c68fc921b84208c0a92b958c15c9.tar.bz2
samba-25216d753742c68fc921b84208c0a92b958c15c9.zip
s4:smbd: fix typos
Autobuild-User(master): Michael Adam <obnox@samba.org> Autobuild-Date(master): Tue Jun 12 09:21:15 CEST 2012 on sn-devel-104
Diffstat (limited to 'source4/smbd')
-rw-r--r--source4/smbd/process_single.c2
-rw-r--r--source4/smbd/process_standard.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/source4/smbd/process_single.c b/source4/smbd/process_single.c
index e1af2d48e8..742eac1824 100644
--- a/source4/smbd/process_single.c
+++ b/source4/smbd/process_single.c
@@ -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);
}
diff --git a/source4/smbd/process_standard.c b/source4/smbd/process_standard.c
index 1e9b8ed8ac..dd5f958974 100644
--- a/source4/smbd/process_standard.c
+++ b/source4/smbd/process_standard.c
@@ -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,