14 Nov
2005
14 Nov
'05
3:43 p.m.
On Mon, Nov 14, 2005 at 08:54:07AM -0600, Rich Smrcina wrote:
Perhaps the underscore is also considered a valid character. I can process dataset names with underscores using the extra tests and script. Also, I changed do_ncv.c to allow underscores in the dataset name.
if ( ((*inp >= 'A') && (*inp <= 'Z')) || ((*inp >= 'a') && (*inp <= 'z')) || ((*inp >= '0') && (*inp <= '9')) || ((*inp == '_') ) ) {
Ah - you're right, the rrdcreate(1) man-page says as much. Missed that when I first did the NCV module.
I've fixed that in my code.
Regards, Henrik