From 28ddf7d47f819d8c1d33be687a40ff77be80bf5c Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Thu, 11 Feb 2010 23:25:14 +0000 Subject: [PATCH] * minor tweak to above --- citadel/control.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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; } -- 2.30.2