[BACK]Return to kerberos5.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / lib / libtelnet

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

Diff for /src/lib/libtelnet/kerberos5.c between version 1.18 and 1.19

version 1.18, 2011/04/24 19:00:31 version 1.19, 2012/01/09 15:25:33
Line 96  krb5_context telnet_context;
Line 96  krb5_context telnet_context;
 static krb5_auth_context auth_context;  static krb5_auth_context auth_context;
   
 static int  static int
 Data(Authenticator *ap, int type, void *d, int c)  Data(Authenticator *ap, int type, const void *d, int c)
 {  {
         unsigned char *p = str_data + 4;          unsigned char *p = str_data + 4;
         unsigned char *cd = (unsigned char *) d;          const unsigned char *cd = (const unsigned char *) d;
   
         if (c == -1)          if (c == -1)
                 c = strlen(cd);                  c = strlen(cd);

Legend:
Removed from v.1.18  
changed lines
  Added in v.1.19

CVSweb <webmaster@jp.NetBSD.org>