[BACK]Return to parse.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / libexec / identd

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

Diff for /src/libexec/identd/Attic/parse.c between version 1.11 and 1.12

version 1.11, 1998/07/27 15:11:06 version 1.12, 1999/05/18 04:49:41
Line 224  int parse(fp, laddr, faddr)
Line 224  int parse(fp, laddr, faddr)
     /* Read query from client */      /* Read query from client */
     rcode = fscanf(fp, " %d , %d", &lport, &fport);      rcode = fscanf(fp, " %d , %d", &lport, &fport);
   
       if (liar_flag)
       {
         if (syslog_flag)
           syslog(LOG_NOTICE, "User %s requested a user for host %s: %d, %d, and I lied",
                  pwp->pw_name,
                  gethost(faddr),
                  lport, fport);
   
         printf("%d , %d : USER-ID : OTHER :%s\r\n",
              lport, fport, lie_string);
         continue;
       }
   
 #ifdef INCLUDE_EXTENSIONS  #ifdef INCLUDE_EXTENSIONS
     /*      /*
     ** Do additional parsing in case of extended request      ** Do additional parsing in case of extended request

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

CVSweb <webmaster@jp.NetBSD.org>