aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2011-05-10 20:49:13 +0300
committerSergey Poznyakoff <gray@gnu.org.ua>2011-05-10 20:49:13 +0300
commited90a093017ea4d4ac5fd2776917f6dd873166e0 (patch)
tree57be9a38c05096976c0cf1f5976686c3e4f597c5 /src
parent0455a1061c935f16d2d264f7008d5eb7344c352c (diff)
downloadwydawca-ed90a093017ea4d4ac5fd2776917f6dd873166e0.tar.gz
wydawca-ed90a093017ea4d4ac5fd2776917f6dd873166e0.tar.bz2
Remove c-ctype module.
Diffstat (limited to 'src')
-rw-r--r--src/lock.c3
-rw-r--r--src/meta.c1
2 files changed, 1 insertions, 3 deletions
diff --git a/src/lock.c b/src/lock.c
index bc8505c..24d0205 100644
--- a/src/lock.c
+++ b/src/lock.c
@@ -12,13 +12,12 @@
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with wydawca. If not, see <http://www.gnu.org/licenses/>. */
#include "wydawca.h"
-#include "c-ctype.h"
#include "xgethostname.h"
int enable_locking = 1;
char *lockdir;
time_t lock_expire_time = 5*60;
time_t lock_timeout = 60;
@@ -224,13 +223,13 @@ static char *
fix_tagname (const char *tag)
{
char *tagname = xstrdup (tag);
char *p;
for (p = tagname; *p; p++)
- if (!c_isalnum (*p) && *p != '_' && *p != '-')
+ if (!isalnum (*p) && *p != '_' && *p != '-')
*p = '_';
return tagname;
}
char *
wydawca_lockname (const char *tag)
diff --git a/src/meta.c b/src/meta.c
index 545ac36..30d3041 100644
--- a/src/meta.c
+++ b/src/meta.c
@@ -13,13 +13,12 @@
You should have received a copy of the GNU General Public License along
with wydawca. If not, see <http://www.gnu.org/licenses/>. */
#include "wydawca.h"
#include "sql.h"
-#include <c-ctype.h>
static const char *
meta_expand (struct metadef *def, void *data)
{
if (!def->value)
{

Return to:

Send suggestions and report system problems to the System administrator.