ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/gvpe/src/vped.C
(Generate patch)

Comparing gvpe/src/vped.C (file contents):
Revision 1.13 by pcg, Thu Oct 16 21:57:54 2003 UTC vs.
Revision 1.15 by pcg, Thu Jan 29 18:55:10 2004 UTC

21 21
22#include "config.h" 22#include "config.h"
23 23
24#include <cstdio> 24#include <cstdio>
25#include <cstring> 25#include <cstring>
26#include <cstdlib>
27#include <clocale>
26 28
27#include <errno.h> 29#include <errno.h>
28#include <fcntl.h> 30#include <fcntl.h>
29#include <getopt.h> 31#include <getopt.h>
30#include <signal.h> 32#include <signal.h>
253 255
254 RAND_load_file ("/dev/urandom", 1024); 256 RAND_load_file ("/dev/urandom", 1024);
255 257
256 if (!THISNODE) 258 if (!THISNODE)
257 { 259 {
258 slog (L_ERR, _("current node not set, or node '%s' not found in configfile, use the -n switch when starting vped."), 260 slog (L_ERR, _("current node not set, or node '%s' not found in configfile, specify the nodename when starting vped."),
259 thisnode ? thisnode : "<unset>"); 261 thisnode ? thisnode : "<unset>");
260 exit (1); 262 exit (EXIT_FAILURE);
261 } 263 }
262 264
263 if (detach (do_detach)) 265 if (detach (do_detach))
264 exit (0); 266 exit (EXIT_SUCCESS);
265 267
266 setup_signals (); 268 setup_signals ();
267 269
268 if (!network.setup ()) 270 if (!network.setup ())
269 { 271 {
270 iom.loop (); 272 iom.loop ();
271 cleanup_and_exit (1); 273 cleanup_and_exit (EXIT_FAILURE);
272 } 274 }
273 275
274 slog (L_ERR, _("unable to setup network, unrecoverable error, exiting.")); 276 slog (L_ERR, _("unable to setup network, unrecoverable error, exiting."));
275 cleanup_and_exit (1); 277 cleanup_and_exit (EXIT_FAILURE);
276} 278}
277 279

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines