[BACK]Return to ns_parse.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / lib / libc / nameser

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/lib/libc/nameser/ns_parse.c between version 1.7 and 1.8

version 1.7, 2009/04/12 17:07:17 version 1.8, 2009/04/12 19:43:37
Line 212  ns_parserr2(ns_msg *handle, ns_sect sect
Line 212  ns_parserr2(ns_msg *handle, ns_sect sect
         int tmp;          int tmp;
   
         /* Make section right. */          /* Make section right. */
         if ((tmp = section) < 0 || section >= ns_s_max)          tmp = section;
           if (tmp < 0 || section >= ns_s_max)
                 RETERR(ENODEV);                  RETERR(ENODEV);
         if (section != handle->_sect)          if (section != handle->_sect)
                 setsection(handle, section);                  setsection(handle, section);

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.8

CVSweb <webmaster@jp.NetBSD.org>