]> git.pond.sub.org Git - empserver/blobdiff - src/server/update.c
Update copyright notice
[empserver] / src / server / update.c
index 80d656d2518be58f5d69362d88048070a389d850..073fdabe6b1f0379ee1ace99ed07c7df939cdd13 100644 (file)
@@ -1,6 +1,6 @@
 /*
  *  Empire - A multi-player, client/server Internet based war game.
- *  Copyright (C) 1986-2014, Dave Pare, Jeff Bailey, Thomas Ruschak,
+ *  Copyright (C) 1986-2018, Dave Pare, Jeff Bailey, Thomas Ruschak,
  *                Ken Stevens, Steve McClure, Markus Armbruster
  *
  *  Empire is free software: you can redistribute it and/or modify
@@ -42,7 +42,6 @@
 #include <time.h>
 #include "chance.h"
 #include "empthread.h"
-#include "file.h"
 #include "game.h"
 #include "misc.h"
 #include "optlist.h"
 #include "prototypes.h"
 #include "server.h"
 
-/*
- * Update is running.
- * Can be used to suppress messages, or direct them to bulletins.
- */
-int update_running;
-
 static time_t update_schedule_anchor;
 static int update_wanted;
 
@@ -205,9 +198,7 @@ update_run(void)
            return;
        }
     }
-    update_running = 1;
     update_main();
-    update_running = 0;
     empth_rwlock_unlock(update_lock);
 }