Skip to content
Snippets Groups Projects
Commit 49b4d442 authored by rswindell's avatar rswindell
Browse files

Eliminated use of itoa().

parent f2e87787
No related branches found
No related tags found
No related merge requests found
......@@ -942,7 +942,7 @@ char* DLLCALL nodestatus(scfg_t* cfg, node_t* node, char* buf, size_t buflen)
strcat(str,"performing sysop activities");
break;
default:
itoa(node->action,str+strlen(str),10);
sprintf(str+strlen(str),"%d",node->action);
break;
}
if(!node->connection)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment