Add missing call to transaction_begin.
authorChris Hanson <org/chris-hanson/cph>
Tue, 23 Apr 2002 13:47:30 +0000 (13:47 +0000)
committerChris Hanson <org/chris-hanson/cph>
Tue, 23 Apr 2002 13:47:30 +0000 (13:47 +0000)
v7/src/microcode/ntsock.c

index 98a9d5fb8d9653aea88a1772babf140a18801ee5..e589436ff631680518bfbd8c89638e04b875c8c0 100644 (file)
@@ -1,8 +1,8 @@
 /* -*-C-*-
 
-$Id: ntsock.c,v 1.11 2001/07/19 00:44:37 cph Exp $
+$Id: ntsock.c,v 1.12 2002/04/23 13:47:30 cph Exp $
 
-Copyright (c) 1997-2001 Massachusetts Institute of Technology
+Copyright (c) 1997-2002 Massachusetts Institute of Technology
 
 This program is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
@@ -189,6 +189,7 @@ Tchannel
 OS_create_tcp_server_socket (void)
 {
   SOCKET s;
+  transaction_begin ();
   SOCKET_SOCKET_CALL (socket, (PF_INET, SOCK_STREAM, 0), s);
   RETURN_SOCKET (s, NT_channel_class_tcp_server_socket);
 }