svn commit: samba r5141 - in branches/SAMBA_4_0/source/smbd: .

metze at samba.org metze at samba.org
Mon Jan 31 16:36:17 GMT 2005


Author: metze
Date: 2005-01-31 16:36:17 +0000 (Mon, 31 Jan 2005)
New Revision: 5141

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=5141

Log:
fix compiler warnings

metze

Modified:
   branches/SAMBA_4_0/source/smbd/service_stream.c
   branches/SAMBA_4_0/source/smbd/service_task.c


Changeset:
Modified: branches/SAMBA_4_0/source/smbd/service_stream.c
===================================================================
--- branches/SAMBA_4_0/source/smbd/service_stream.c	2005-01-31 16:32:14 UTC (rev 5140)
+++ branches/SAMBA_4_0/source/smbd/service_stream.c	2005-01-31 16:36:17 UTC (rev 5141)
@@ -51,7 +51,7 @@
 */
 void stream_terminate_connection(struct stream_connection *srv_conn, const char *reason)
 {
-	struct event_ctx *event_ctx = srv_conn->event.ctx;
+	struct event_context *event_ctx = srv_conn->event.ctx;
 	const struct model_ops *model_ops = srv_conn->model_ops;
 	talloc_free(srv_conn);
 	model_ops->terminate(event_ctx, reason);

Modified: branches/SAMBA_4_0/source/smbd/service_task.c
===================================================================
--- branches/SAMBA_4_0/source/smbd/service_task.c	2005-01-31 16:32:14 UTC (rev 5140)
+++ branches/SAMBA_4_0/source/smbd/service_task.c	2005-01-31 16:36:17 UTC (rev 5141)
@@ -30,7 +30,7 @@
 */
 void task_terminate(struct task_server *task, const char *reason)
 {
-	struct event_ctx *event_ctx = task->event_ctx;
+	struct event_context *event_ctx = task->event_ctx;
 	const struct model_ops *model_ops = task->model_ops;
 	talloc_free(task);
 	model_ops->terminate(event_ctx, reason);



More information about the samba-cvs mailing list