Fixed RMAC support printing

FossilOrigin-Name: b3992d53a4e30df4aeb60287c20b4ee0b9c0b6cb13a173bca161c829c947e164
This commit is contained in:
7u83@mail.ru 2014-07-28 04:54:29 +00:00
parent 4e4aabb228
commit bb491532a8
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ int acinfo_print(char *str,const struct ac_info *acinfo)
sock_addrtostr((struct sockaddr*)&acinfo->local_ip,help,64);
s+=sprintf(s,"\tLocal IP: %s\n",help);
s+=sprintf(s,"\tECN support: %s\n",acinfo->ecn_support==0 ? "limited" : "full");
s+=sprintf(s,"\tRMAC support: %s\n",acinfo->rmac==2 ? "supported" : "not supported");
s+=sprintf(s,"\tRMAC support: %s\n",acinfo->rmac==1 ? "supported" : "not supported");
help[0]=0;