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

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

Diff for /src/lib/libc/resolv/res_debug.c between version 1.12 and 1.13

version 1.12, 2012/03/13 21:13:43 version 1.13, 2012/06/25 22:32:45
Line 391  p_cdname(const u_char *cp, const u_char 
Line 391  p_cdname(const u_char *cp, const u_char 
    length supplied).  */     length supplied).  */
   
 const u_char *  const u_char *
 p_fqnname(cp, msg, msglen, name, namelen)  p_fqnname(const u_char *cp, const u_char *msg, int msglen, char *name,
         const u_char *cp, *msg;      int namelen)
         int msglen;  
         char *name;  
         int namelen;  
 {  {
         int n;          int n;
         size_t newlen;          size_t newlen;
Line 936  latlon2ul(const char **latlonstrptr, int
Line 933  latlon2ul(const char **latlonstrptr, int
  * converts a zone file representation in a string to an RDATA on-the-wire   * converts a zone file representation in a string to an RDATA on-the-wire
  * representation. */   * representation. */
 int  int
 loc_aton(ascii, binary)  loc_aton(const char *ascii, u_char *binary)
         const char *ascii;  
         u_char *binary;  
 {  {
         const char *cp, *maxcp;          const char *cp, *maxcp;
         u_char *bcp;          u_char *bcp;
Line 1047  loc_aton(ascii, binary)
Line 1042  loc_aton(ascii, binary)
   
 /*% takes an on-the-wire LOC RR and formats it in a human readable format. */  /*% takes an on-the-wire LOC RR and formats it in a human readable format. */
 const char *  const char *
 loc_ntoa(binary, ascii)  loc_ntoa(const u_char *binary, char *ascii)
         const u_char *binary;  
         char *ascii;  
 {  {
         static const char *error = "?";          static const char *error = "?";
         static char tmpbuf[sizeof          static char tmpbuf[sizeof

Legend:
Removed from v.1.12  
changed lines
  Added in v.1.13

CVSweb <webmaster@jp.NetBSD.org>