summaryrefslogtreecommitdiff
path: root/server/dhcpd.c
diff options
context:
space:
mode:
authorShane Kerr <shane@isc.org>2006-05-11 14:48:59 +0000
committerShane Kerr <shane@isc.org>2006-05-11 14:48:59 +0000
commit509df655d1e4497a8b8c124bda277a541f9f4508 (patch)
treeb58830d65fd62abdaf8360b1fcaa7771d1387d74 /server/dhcpd.c
parent3a16098f0b0e1633dc23d76bc84068995fd65f67 (diff)
downloadisc-dhcp-509df655d1e4497a8b8c124bda277a541f9f4508.tar.gz
Merging in final change from rt15937, getting rid of space
before () in function calls.
Diffstat (limited to 'server/dhcpd.c')
-rw-r--r--server/dhcpd.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/server/dhcpd.c b/server/dhcpd.c
index eb1c669e..4570cb8f 100644
--- a/server/dhcpd.c
+++ b/server/dhcpd.c
@@ -34,7 +34,7 @@
#ifndef lint
static char ocopyright[] =
-"$Id: dhcpd.c,v 1.119 2006/05/05 20:32:30 dhankins Exp $ Copyright 2004-2006 Internet Systems Consortium.";
+"$Id: dhcpd.c,v 1.120 2006/05/11 14:48:59 shane Exp $ Copyright 2004-2006 Internet Systems Consortium.";
#endif
static char copyright[] =
@@ -230,15 +230,15 @@ int main (argc, argv, envp)
/* Make sure that file descriptors 0 (stdin), 1, (stdout), and
2 (stderr) are open. To do this, we assume that when we
open a file the lowest available file decriptor is used. */
- fd = open ("/dev/null", O_RDWR);
+ fd = open("/dev/null", O_RDWR);
if (fd == 0)
- fd = open ("/dev/null", O_RDWR);
+ fd = open("/dev/null", O_RDWR);
if (fd == 1)
- fd = open ("/dev/null", O_RDWR);
+ fd = open("/dev/null", O_RDWR);
if (fd == 2)
log_perror = 0; /* No sense logging to /dev/null. */
else if (fd != -1)
- close (fd);
+ close(fd);
/* Set up the client classification system. */
classification_setup ();
@@ -573,17 +573,17 @@ int main (argc, argv, envp)
if (daemon) {
/* Become session leader and get pid... */
- pid = setsid ();
+ pid = setsid();
/* Close standard I/O descriptors. */
- close (0);
- close (1);
- close (2);
+ close(0);
+ close(1);
+ close(2);
/* Reopen them on /dev/null. */
- open ("/dev/null", O_RDWR);
- open ("/dev/null", O_RDWR);
- open ("/dev/null", O_RDWR);
+ open("/dev/null", O_RDWR);
+ open("/dev/null", O_RDWR);
+ open("/dev/null", O_RDWR);
log_perror = 0; /* No sense logging to /dev/null. */
}