summaryrefslogtreecommitdiff
path: root/server/main.c
diff options
context:
space:
mode:
authorGravatar Karl Ramm <kcr@1ts.org>2010-12-19 20:03:07 +0000
committerGravatar Karl Ramm <kcr@1ts.org>2010-12-19 20:03:07 +0000
commit4c31bda88443d7d46d222f055b4b49b5262ddf7c (patch)
tree0e263135cab17342573d949ebdfafe9ce30556ba /server/main.c
parent856870da15cf801891b51e6a8624d7e51fbda682 (diff)
remove a stupid cpp trick
Diffstat (limited to 'server/main.c')
-rw-r--r--server/main.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/server/main.c b/server/main.c
index c519f16..038479e 100644
--- a/server/main.c
+++ b/server/main.c
@@ -50,8 +50,6 @@ static const char rcsid_main_c[] =
(if the client has not acknowledged a packet after a given timeout).
*/
-#define EVER (;;) /* don't stop looping */
-
static int do_net_setup(void);
static int initialize(void);
static void usage(void);
@@ -318,7 +316,7 @@ main(int argc,
#ifdef DEBUG_MALLOC
malloc_inuse(&m_size);
#endif
- for EVER {
+ for (;;) {
if (doreset)
do_reset();