Changeset 626

Show
Ignore:
Timestamp:
03/25/06 22:29:55 (7 years ago)
Author:
ahu
Message:

fix for SOA serial overflows, by Dan Bilik & co-worker

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/pdns/pdns/resolver.cc

    r565 r626  
    484484    return 0; 
    485485   
    486   *serial=atoi(parts[2].c_str()); 
    487   return 1; 
    488 } 
    489  
     486  *serial=(uint32_t)atol(parts[2].c_str()); 
     487  return 1; 
     488} 
     489