simplified expression

This commit is contained in:
Daniel Stenberg 2004-08-19 09:37:22 +00:00
parent c8c47768c7
commit 566f7b5e58

View File

@ -108,7 +108,8 @@ inet_pton4(const char *src, unsigned char *dst)
saw_digit = 0;
octets = 0;
*(tp = tmp) = 0;
tp = tmp;
*tp = 0;
while ((ch = *src++) != '\0') {
const char *pch;