diff src/master/login-process.c @ 6161:c62f7ee79446 HEAD

Split o_stream_create_file() to _create_fd() and _create_fd_file().
author Timo Sirainen <tss@iki.fi>
date Thu, 02 Aug 2007 18:23:22 +0300
parents 6c0bfc35af03
children 8bca8efebfcf
line wrap: on
line diff
--- a/src/master/login-process.c	Thu Aug 02 17:35:04 2007 +0300
+++ b/src/master/login-process.c	Thu Aug 02 18:23:22 2007 +0300
@@ -449,9 +449,8 @@
 	p->pid = pid;
 	p->fd = fd;
 	p->io = io_add(fd, IO_READ, login_process_input, p);
-	p->output = o_stream_create_file(fd,
-					 sizeof(struct master_login_reply)*10,
-					 FALSE);
+	p->output = o_stream_create_fd(fd, sizeof(struct master_login_reply)*10,
+				       FALSE);
 	child_process_add(pid, &p->process);
 
 	p->state = LOGIN_STATE_LISTENING;