atoi: remove atoi usage

This commit is contained in:
Yang Tse 2010-11-28 23:11:14 +01:00
parent cbe67a1b71
commit 5db0a412ff
12 changed files with 36 additions and 22 deletions

View file

@ -226,7 +226,7 @@ static int smtp_endofresp(struct pingpong *pp, int *resp)
return FALSE; /* Nothing for us. */
if((result = line[3] == ' '))
*resp = atoi(line);
*resp = strtol(line, NULL, 10);
line += 4;
len -= 4;