From e2f051ac11470157dd398900593c14e1587ca733 Mon Sep 17 00:00:00 2001 From: rswindell <> Date: Thu, 14 Feb 2008 08:09:38 +0000 Subject: [PATCH] Clarify min_dspace usage (minimum diskspace in *kilobytes*). --- src/sbbs3/js_file_area.c | 4 ++-- src/sbbs3/scfgdefs.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/sbbs3/js_file_area.c b/src/sbbs3/js_file_area.c index 4db1611d66..648513609e 100644 --- a/src/sbbs3/js_file_area.c +++ b/src/sbbs3/js_file_area.c @@ -8,7 +8,7 @@ * @format.tab-size 4 (Plain Text/Source Code File Header) * * @format.use-tabs true (see http://www.synchro.net/ptsc_hdr.html) * * * - * Copyright 2006 Rob Swindell - http://www.synchro.net/copyright.html * + * Copyright 2008 Rob Swindell - http://www.synchro.net/copyright.html * * * * This program is free software; you can redistribute it and/or * * modify it under the terms of the GNU General Public License * @@ -42,7 +42,7 @@ #ifdef BUILD_JSDOCS static char* file_area_prop_desc[] = { - "minimum amount of available disk space (in bytes) required for user uploads to be allowed" + "minimum amount of available disk space (in kilobytes) required for user uploads to be allowed" ,"file area settings (bitfield) - see <tt>FM_*</tt> in <tt>sbbsdefs.js</tt> for details" ,NULL }; diff --git a/src/sbbs3/scfgdefs.h b/src/sbbs3/scfgdefs.h index 5882c329c2..9071705219 100644 --- a/src/sbbs3/scfgdefs.h +++ b/src/sbbs3/scfgdefs.h @@ -8,7 +8,7 @@ * @format.tab-size 4 (Plain Text/Source Code File Header) * * @format.use-tabs true (see http://www.synchro.net/ptsc_hdr.html) * * * - * Copyright 2000 Rob Swindell - http://www.synchro.net/copyright.html * + * Copyright 2008 Rob Swindell - http://www.synchro.net/copyright.html * * * * This program is free software; you can redistribute it and/or * * modify it under the terms of the GNU General Public License * @@ -522,7 +522,7 @@ typedef struct uint32_t expired_flags4; /* Flags from set #4 to remove when expired */ uint32_t expired_exempt; /* Exemptions to remove when expired */ uint32_t expired_rest; /* Restrictions to add when expired */ - uint16_t min_dspace; /* Minimum amount of free space for uploads */ + uint16_t min_dspace; /* Minimum amount of free space for uploads (in kilobytes) */ uint16_t max_batup; /* Max number of files in upload queue */ uint16_t max_batdn; /* Max number of files in download queue */ uint16_t max_userxfer; /* Max dest. users of user to user xfer */ -- GitLab