mud/lib/secure/daemon/i3router/clean_fd.h
2020-09-06 05:43:07 -07:00

8 lines
142 B
C

string clean_fd(string fd){
if(grepp(fd," ")){
string *ip_split=explode(fd," ");
fd = ip_split[0];
}
return fd;
}