/*
- * $Id: cache_cf.cc,v 1.73 1996/08/26 23:26:11 wessels Exp $
+ * $Id: cache_cf.cc,v 1.74 1996/08/27 17:48:12 wessels Exp $
*
* DEBUG: section 3 Configuration File Parsing
* AUTHOR: Harvest Derived
Config.quickAbort.pct = 0;
Config.quickAbort.max = 0;
} else {
- GetInteger(i);
+ if (sscanf(token, "%d", &i) != 1)
+ self_destruct();
Config.quickAbort.min = i * 1024;
GetInteger(i);
Config.quickAbort.pct = i * 128 / 100; /* 128 is full scale */