unixctl: Avoid double error reporting.
authorBen Pfaff <blp@nicira.com>
Fri, 15 Jan 2010 18:31:57 +0000 (10:31 -0800)
committerBen Pfaff <blp@nicira.com>
Fri, 15 Jan 2010 19:33:18 +0000 (11:33 -0800)
All of these programs were re-reporting an error that
unixctl_server_create() had already reported.  There's no need for that.

ovsdb/ovsdb-server.c
utilities/ovs-controller.c
utilities/ovs-discover.c
utilities/ovs-openflowd.c
vswitchd/ovs-brcompatd.c
vswitchd/ovs-vswitchd.c

index 17f16b92098d152e2637c22ca24cd77f0db459f3..e3740a36c5ae3b4f709936de8da7dc26e1f6f41d 100644 (file)
@@ -92,7 +92,7 @@ main(int argc, char *argv[])
 
     retval = unixctl_server_create(unixctl_path, &unixctl);
     if (retval) {
-        ovs_fatal(retval, "could not listen for control connections");
+        exit(EXIT_FAILURE);
     }
 
     daemonize_complete();
index 56a530730f50b665fae95f91509ed0f26b7e84d2..34198b5a3eb9e2b7040a5601193bba8861fd5b66 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2008, 2009 Nicira Networks.
+ * Copyright (c) 2008, 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.
@@ -129,7 +129,7 @@ main(int argc, char *argv[])
 
     retval = unixctl_server_create(NULL, &unixctl);
     if (retval) {
-        ovs_fatal(retval, "Could not listen for unixctl connections");
+        exit(EXIT_FAILURE);
     }
 
     daemonize_complete();
index 9210d4d431946a99849873f7a30c7749616d2abd..1c3afd0614bb3e0a16c3d0edf308044613cce234 100644 (file)
@@ -115,7 +115,7 @@ main(int argc, char *argv[])
 
     retval = unixctl_server_create(NULL, &unixctl);
     if (retval) {
-        ovs_fatal(retval, "Could not listen for unixctl connections");
+        exit(EXIT_FAILURE);
     }
 
     die_if_already_running();
index 5f4b24bd0714d873d8d32116c809f54dfe9978ea..43cbd6e0146c6bd0b2f367541b0c70610e40bd99 100644 (file)
@@ -124,7 +124,7 @@ main(int argc, char *argv[])
     /* Start listening for ovs-appctl requests. */
     error = unixctl_server_create(NULL, &unixctl);
     if (error) {
-        ovs_fatal(error, "Could not listen for unixctl connections");
+        exit(EXIT_FAILURE);
     }
 
     VLOG_INFO("Open vSwitch version %s", VERSION BUILDNR);
index 70921f21491bff5bb604019a29972144480bc353..04ee2c061b55fa3489cfc37996309e5547b4bc1a 100644 (file)
@@ -1159,7 +1159,7 @@ main(int argc, char *argv[])
 
     retval = unixctl_server_create(NULL, &unixctl);
     if (retval) {
-        ovs_fatal(retval, "could not listen for vlog connections");
+        exit(EXIT_FAILURE);
     }
 
     if (brc_open(&brc_sock)) {
index 604ee1b5530dc7d13453bdf25ee196ed2b6faea0..d9086dc93b7ffc967347178a7b3331fd166a24f8 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2008, 2009 Nicira Networks
+/* Copyright (c) 2008, 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.
@@ -75,7 +75,7 @@ main(int argc, char *argv[])
 
     retval = unixctl_server_create(NULL, &unixctl);
     if (retval) {
-        ovs_fatal(retval, "could not listen for control connections");
+        exit(EXIT_FAILURE);
     }
 
     daemonize_complete();