[Nagios-devel] patch for statuswrl.c
Posted: Mon Aug 19, 2002 7:40 am
Hi,
I found out that if you have a hostname with a dot in there, the 3d status
map fails to render. It seems that the dot is some special character or so
in this vrml language (i dunno).
what i did to fix this is:
statuswrl.c: 943-951:
printf("translation %2.2f %2.2f %2.2f\n",x,y,z);
printf("children [\n");
+ while (temp_host->name!='\0') {
+ if (temp_host->name=='.') temp_host->name='_';
+ i++;
+ }
printf("DEF Host%s Shape{\n",temp_host->name);
printf("appearance Appearance{\n");
Its not in real diff format, but you might be able to read it
)
please not that i'm not on this list so please include me in the cc if you
reply on this.
With kind regards,
Wim Fournier
[email protected]
This post was automatically imported from historical nagios-devel mailing list archives
Original poster: [email protected]
I found out that if you have a hostname with a dot in there, the 3d status
map fails to render. It seems that the dot is some special character or so
in this vrml language (i dunno).
what i did to fix this is:
statuswrl.c: 943-951:
printf("translation %2.2f %2.2f %2.2f\n",x,y,z);
printf("children [\n");
+ while (temp_host->name!='\0') {
+ if (temp_host->name=='.') temp_host->name='_';
+ i++;
+ }
printf("DEF Host%s Shape{\n",temp_host->name);
printf("appearance Appearance{\n");
Its not in real diff format, but you might be able to read it
please not that i'm not on this list so please include me in the cc if you
reply on this.
With kind regards,
Wim Fournier
[email protected]
This post was automatically imported from historical nagios-devel mailing list archives
Original poster: [email protected]