From: Art Cancro Date: Thu, 11 Feb 2010 23:25:14 +0000 (+0000) Subject: * minor tweak to above X-Git-Tag: v7.86~437 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=28ddf7d47f819d8c1d33be687a40ff77be80bf5c * minor tweak to above --- diff --git a/citadel/control.c b/citadel/control.c index e9725e3fa..0bf7c13d3 100644 --- a/citadel/control.c +++ b/citadel/control.c @@ -3,7 +3,7 @@ * * This module handles states which are global to the entire server. * - * Copyright (c) 1987-2009 by the citadel.org team + * Copyright (c) 1987-2010 by the citadel.org team * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -233,13 +233,14 @@ void check_control(void) } -/** +/* * release_control - close our fd on exit */ void release_control(void) { - if (control_fp != NULL) + if (control_fp != NULL) { fclose(control_fp); + } control_fp = NULL; }