X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=ovsdb%2Fovsdb-client.c;h=baf525d4e83e1690e531744ee8d49aef1f88db38;hb=0b0544d706d10516d3122fbcce8f1dc1dec6cb92;hp=87cb514fd9b5716598cf95004cb4b4e8e8e9381e;hpb=108496163d4d7f77766c2b05c5c20131d6c436a9;p=openvswitch diff --git a/ovsdb/ovsdb-client.c b/ovsdb/ovsdb-client.c index 87cb514f..baf525d4 100644 --- a/ovsdb/ovsdb-client.c +++ b/ovsdb/ovsdb-client.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2009 Nicira Networks. + * Copyright (c) 2009, 2010 Nicira Networks. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -842,7 +842,14 @@ do_monitor(int argc, char *argv[]) && json_equal(msg->id, request_id)) { monitor_print(msg->result, table, &columns, true); fflush(stdout); - daemonize(); + if (get_detach()) { + /* daemonize() closes the standard file descriptors. We output + * to stdout, so we need to save and restore STDOUT_FILENO. */ + int fd = dup(STDOUT_FILENO); + daemonize(); + dup2(fd, STDOUT_FILENO); + close(fd); + } } else if (msg->type == JSONRPC_NOTIFY && !strcmp(msg->method, "update")) { struct json *params = msg->params;