/[rdesktop]/sourceforge.net/trunk/rdesktop/secure.c
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /sourceforge.net/trunk/rdesktop/secure.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 376 by jsorg71, Mon May 19 21:36:33 2003 UTC revision 710 by jsorg71, Tue Jun 15 22:17:08 2004 UTC
# Line 33  Line 33 
33  #include "crypto/bn.h"  #include "crypto/bn.h"
34  #endif  #endif
35    
36  extern char hostname[16];  extern char g_hostname[16];
37  extern int width;  extern int g_width;
38  extern int height;  extern int g_height;
39  extern int keylayout;  extern int g_keylayout;
40  extern BOOL encryption;  extern BOOL g_encryption;
41  extern BOOL licence_issued;  extern BOOL g_licence_issued;
42  extern BOOL use_rdp5;  extern BOOL g_use_rdp5;
43  extern int server_bpp;  extern BOOL g_console_session;
44    extern int g_server_bpp;
45    extern uint16 mcs_userid;
46    extern VCHANNEL g_channels[];
47    extern unsigned int g_num_channels;
48    
49  static int rc4_key_len;  static int rc4_key_len;
50  static RC4_KEY rc4_decrypt_key;  static RC4_KEY rc4_decrypt_key;
# Line 54  static uint8 sec_decrypt_update_key[16]; Line 58  static uint8 sec_decrypt_update_key[16];
58  static uint8 sec_encrypt_update_key[16];  static uint8 sec_encrypt_update_key[16];
59  static uint8 sec_crypted_random[SEC_MODULUS_SIZE];  static uint8 sec_crypted_random[SEC_MODULUS_SIZE];
60    
61  uint16 server_rdp_version = 0;  uint16 g_server_rdp_version = 0;
62    
63  /*  /*
64   * General purpose 48-byte transformation, using two 32-byte salts (generally,   * I believe this is based on SSLv3 with the following differences:
65   * a client and server salt) and a global salt value used for padding.   *  MAC algorithm (5.2.3.1) uses only 32-bit length in place of seq_num/type/length fields
66     *  MAC algorithm uses SHA1 and MD5 for the two hash functions instead of one or other
67     *  key_block algorithm (6.2.2) uses 'X', 'YY', 'ZZZ' instead of 'A', 'BB', 'CCC'
68     *  key_block partitioning is different (16 bytes each: MAC secret, decrypt key, encrypt key)
69     *  encryption/decryption keys updated every 4096 packets
70     * See http://wp.netscape.com/eng/ssl3/draft302.txt
71     */
72    
73    /*
74     * 48-byte transformation used to generate master secret (6.1) and key material (6.2.2).
75   * Both SHA1 and MD5 algorithms are used.   * Both SHA1 and MD5 algorithms are used.
76   */   */
77  void  void
# Line 89  sec_hash_48(uint8 * out, uint8 * in, uin Line 102  sec_hash_48(uint8 * out, uint8 * in, uin
102  }  }
103    
104  /*  /*
105   * Weaker 16-byte transformation, also using two 32-byte salts, but   * 16-byte transformation used to generate export keys (6.2.2).
  * only using a single round of MD5.  
106   */   */
107  void  void
108  sec_hash_16(uint8 * out, uint8 * in, uint8 * salt1, uint8 * salt2)  sec_hash_16(uint8 * out, uint8 * in, uint8 * salt1, uint8 * salt2)
# Line 113  sec_make_40bit(uint8 * key) Line 125  sec_make_40bit(uint8 * key)
125          key[2] = 0x9e;          key[2] = 0x9e;
126  }  }
127    
128  /* Generate a session key and RC4 keys, given client and server randoms */  /* Generate encryption keys given client and server randoms */
129  static void  static void
130  sec_generate_keys(uint8 * client_key, uint8 * server_key, int rc4_key_size)  sec_generate_keys(uint8 * client_random, uint8 * server_random, int rc4_key_size)
131  {  {
132          uint8 session_key[48];          uint8 pre_master_secret[48];
133          uint8 temp_hash[48];          uint8 master_secret[48];
134          uint8 input[48];          uint8 key_block[48];
135    
136          /* Construct input data to hash */          /* Construct pre-master secret */
137          memcpy(input, client_key, 24);          memcpy(pre_master_secret, client_random, 24);
138          memcpy(input + 24, server_key, 24);          memcpy(pre_master_secret + 24, server_random, 24);
139    
140          /* Generate session key - two rounds of sec_hash_48 */          /* Generate master secret and then key material */
141          sec_hash_48(temp_hash, input, client_key, server_key, 65);          sec_hash_48(master_secret, pre_master_secret, client_random, server_random, 'A');
142          sec_hash_48(session_key, temp_hash, client_key, server_key, 88);          sec_hash_48(key_block, master_secret, client_random, server_random, 'X');
143    
144          /* Store first 16 bytes of session key, for generating signatures */          /* First 16 bytes of key material is MAC secret */
145          memcpy(sec_sign_key, session_key, 16);          memcpy(sec_sign_key, key_block, 16);
146    
147          /* Generate RC4 keys */          /* Generate export keys from next two blocks of 16 bytes */
148          sec_hash_16(sec_decrypt_key, &session_key[16], client_key, server_key);          sec_hash_16(sec_decrypt_key, &key_block[16], client_random, server_random);
149          sec_hash_16(sec_encrypt_key, &session_key[32], client_key, server_key);          sec_hash_16(sec_encrypt_key, &key_block[32], client_random, server_random);
150    
151          if (rc4_key_size == 1)          if (rc4_key_size == 1)
152          {          {
# Line 183  buf_out_uint32(uint8 * buffer, uint32 va Line 195  buf_out_uint32(uint8 * buffer, uint32 va
195          buffer[3] = (value >> 24) & 0xff;          buffer[3] = (value >> 24) & 0xff;
196  }  }
197    
198  /* Generate a signature hash, using a combination of SHA1 and MD5 */  /* Generate a MAC hash (5.2.3.1), using a combination of SHA1 and MD5 */
199  void  void
200  sec_sign(uint8 * signature, int siglen, uint8 * session_key, int keylen, uint8 * data, int datalen)  sec_sign(uint8 * signature, int siglen, uint8 * session_key, int keylen, uint8 * data, int datalen)
201  {  {
# Line 211  sec_sign(uint8 * signature, int siglen, Line 223  sec_sign(uint8 * signature, int siglen,
223          memcpy(signature, md5sig, siglen);          memcpy(signature, md5sig, siglen);
224  }  }
225    
226  /* Update an encryption key - similar to the signing process */  /* Update an encryption key */
227  static void  static void
228  sec_update(uint8 * key, uint8 * update_key)  sec_update(uint8 * key, uint8 * update_key)
229  {  {
# Line 330  sec_init(uint32 flags, int maxlen) Line 342  sec_init(uint32 flags, int maxlen)
342          int hdrlen;          int hdrlen;
343          STREAM s;          STREAM s;
344    
345          if (!licence_issued)          if (!g_licence_issued)
346                  hdrlen = (flags & SEC_ENCRYPT) ? 12 : 4;                  hdrlen = (flags & SEC_ENCRYPT) ? 12 : 4;
347          else          else
348                  hdrlen = (flags & SEC_ENCRYPT) ? 12 : 0;                  hdrlen = (flags & SEC_ENCRYPT) ? 12 : 0;
# Line 340  sec_init(uint32 flags, int maxlen) Line 352  sec_init(uint32 flags, int maxlen)
352          return s;          return s;
353  }  }
354    
355  /* Transmit secure transport packet */  /* Transmit secure transport packet over specified channel */
356  void  void
357  sec_send(STREAM s, uint32 flags)  sec_send_to_channel(STREAM s, uint32 flags, uint16 channel)
358  {  {
359          int datalen;          int datalen;
360    
361          s_pop_layer(s, sec_hdr);          s_pop_layer(s, sec_hdr);
362          if (!licence_issued || (flags & SEC_ENCRYPT))          if (!g_licence_issued || (flags & SEC_ENCRYPT))
363                  out_uint32_le(s, flags);                  out_uint32_le(s, flags);
364    
365          if (flags & SEC_ENCRYPT)          if (flags & SEC_ENCRYPT)
# Line 364  sec_send(STREAM s, uint32 flags) Line 376  sec_send(STREAM s, uint32 flags)
376                  sec_encrypt(s->p + 8, datalen);                  sec_encrypt(s->p + 8, datalen);
377          }          }
378    
379          mcs_send(s);          mcs_send_to_channel(s, channel);
380  }  }
381    
382    /* Transmit secure transport packet */
383    
384    void
385    sec_send(STREAM s, uint32 flags)
386    {
387            sec_send_to_channel(s, flags, MCS_GLOBAL_CHANNEL);
388    }
389    
390    
391  /* Transfer the client random to the server */  /* Transfer the client random to the server */
392  static void  static void
393  sec_establish_key(void)  sec_establish_key(void)
# Line 389  sec_establish_key(void) Line 410  sec_establish_key(void)
410  static void  static void
411  sec_out_mcs_data(STREAM s)  sec_out_mcs_data(STREAM s)
412  {  {
413          int hostlen = 2 * strlen(hostname);          int hostlen = 2 * strlen(g_hostname);
414          int length = 158 + 76 + 12 + 4 + 20;          int length = 158 + 76 + 12 + 4;
415            unsigned int i;
416    
417            if (g_num_channels > 0)
418                    length += g_num_channels * 12 + 8;
419    
420          if (hostlen > 30)          if (hostlen > 30)
421                  hostlen = 30;                  hostlen = 30;
422    
423          out_uint16_be(s, 5);    /* unknown */          /* Generic Conference Control (T.124) ConferenceCreateRequest */
424            out_uint16_be(s, 5);
425          out_uint16_be(s, 0x14);          out_uint16_be(s, 0x14);
426          out_uint8(s, 0x7c);          out_uint8(s, 0x7c);
427          out_uint16_be(s, 1);          out_uint16_be(s, 1);
# Line 408  sec_out_mcs_data(STREAM s) Line 434  sec_out_mcs_data(STREAM s)
434          out_uint16_le(s, 0xc001);          out_uint16_le(s, 0xc001);
435          out_uint8(s, 0);          out_uint8(s, 0);
436    
437          out_uint32_le(s, 0x61637544);   /* "Duca" ?! */          out_uint32_le(s, 0x61637544);   /* OEM ID: "Duca", as in Ducati. */
438          out_uint16_be(s, ((length - 14) | 0x8000));     /* remaining length */          out_uint16_be(s, ((length - 14) | 0x8000));     /* remaining length */
439    
440          /* Client information */          /* Client information */
441          out_uint16_le(s, SEC_TAG_CLI_INFO);          out_uint16_le(s, SEC_TAG_CLI_INFO);
442          out_uint16_le(s, 212);  /* length */          out_uint16_le(s, 212);  /* length */
443          out_uint16_le(s, use_rdp5 ? 4 : 1);     /* RDP version. 1 == RDP4, 4 == RDP5. */          out_uint16_le(s, g_use_rdp5 ? 4 : 1);   /* RDP version. 1 == RDP4, 4 == RDP5. */
444          out_uint16_le(s, 8);          out_uint16_le(s, 8);
445          out_uint16_le(s, width);          out_uint16_le(s, g_width);
446          out_uint16_le(s, height);          out_uint16_le(s, g_height);
447          out_uint16_le(s, 0xca01);          out_uint16_le(s, 0xca01);
448          out_uint16_le(s, 0xaa03);          out_uint16_le(s, 0xaa03);
449          out_uint32_le(s, keylayout);          out_uint32_le(s, g_keylayout);
450          out_uint32_le(s, 2600); /* Client build. We are now 2600 compatible :-) */          out_uint32_le(s, 2600); /* Client build. We are now 2600 compatible :-) */
451    
452          /* Unicode name of client, padded to 32 bytes */          /* Unicode name of client, padded to 32 bytes */
453          rdp_out_unistr(s, hostname, hostlen);          rdp_out_unistr(s, g_hostname, hostlen);
454          out_uint8s(s, 30 - hostlen);          out_uint8s(s, 30 - hostlen);
455    
456          out_uint32_le(s, 4);          out_uint32_le(s, 4);
457          out_uint32(s, 0);          out_uint32(s, 0);
458          out_uint32_le(s, 12);          out_uint32_le(s, 12);
459          out_uint8s(s, 64);      /* reserved? 4 + 12 doublewords */          out_uint8s(s, 64);      /* reserved? 4 + 12 doublewords */
460            out_uint16_le(s, 0xca01);       /* colour depth? */
         switch (server_bpp)  
         {  
                 case 8:  
                         out_uint16_le(s, 0xca01);  
                         break;  
                 case 15:  
                         out_uint16_le(s, 0xca02);  
                         break;  
                 case 16:  
                         out_uint16_le(s, 0xca03);  
                         break;  
                 case 24:  
                         out_uint16_le(s, 0xca04);  
                         break;  
         }  
461          out_uint16_le(s, 1);          out_uint16_le(s, 1);
462    
463          out_uint32(s, 0);          out_uint32(s, 0);
464          out_uint8(s, server_bpp);          out_uint8(s, g_server_bpp);
465          out_uint16_le(s, 0x0700);          out_uint16_le(s, 0x0700);
466          out_uint8(s, 0);          out_uint8(s, 0);
467          out_uint32_le(s, 1);          out_uint32_le(s, 1);
# Line 458  sec_out_mcs_data(STREAM s) Line 469  sec_out_mcs_data(STREAM s)
469    
470          out_uint16_le(s, SEC_TAG_CLI_4);          out_uint16_le(s, SEC_TAG_CLI_4);
471          out_uint16_le(s, 12);          out_uint16_le(s, 12);
472          out_uint32_le(s, 9);          out_uint32_le(s, g_console_session ? 0xb : 9);
473          out_uint32(s, 0);          out_uint32(s, 0);
474    
475          /* Client encryption settings */          /* Client encryption settings */
476          out_uint16_le(s, SEC_TAG_CLI_CRYPT);          out_uint16_le(s, SEC_TAG_CLI_CRYPT);
477          out_uint16_le(s, 12);   /* length */          out_uint16_le(s, 12);   /* length */
478          out_uint32_le(s, encryption ? 0x3 : 0); /* encryption supported, 128-bit supported */          out_uint32_le(s, g_encryption ? 0x3 : 0);       /* encryption supported, 128-bit supported */
479          out_uint32(s, 0);       /* Unknown */          out_uint32(s, 0);       /* Unknown */
480    
481          out_uint16_le(s, SEC_TAG_CLI_CHANNELS);          DEBUG_RDP5(("g_num_channels is %d\n", g_num_channels));
482          out_uint16_le(s, 20);   /* length */          if (g_num_channels > 0)
483          out_uint32_le(s, 1);    /* number of virtual channels */          {
484          out_uint8p(s, "cliprdr", 8);    /* name padded to 8(?) */                  out_uint16_le(s, SEC_TAG_CLI_CHANNELS);
485          out_uint16(s, 0);                  out_uint16_le(s, g_num_channels * 12 + 8);      /* length */
486          out_uint16_le(s, 0xc0a0);       /* Flags. Rumours tell this is documented in MSDN. */                  out_uint32_le(s, g_num_channels);       /* number of virtual channels */
487                    for (i = 0; i < g_num_channels; i++)
488                    {
489                            DEBUG_RDP5(("Requesting channel %s\n", g_channels[i].name));
490                            out_uint8a(s, g_channels[i].name, 8);
491                            out_uint32_be(s, g_channels[i].flags);
492                    }
493            }
494    
495          s_mark_end(s);          s_mark_end(s);
496  }  }
# Line 563  sec_parse_crypt_info(STREAM s, uint32 * Line 581  sec_parse_crypt_info(STREAM s, uint32 *
581          if (end > s->end)          if (end > s->end)
582                  return False;                  return False;
583    
584          in_uint32_le(s, flags); /* 1 = RDP4-style, 0x80000002 = X.509 */          in_uint32_le(s, flags); /* 1 = RDP4-style, 0x80000002 = X.509 */
585          if (flags & 1)          if (flags & 1)
586          {          {
587                  DEBUG_RDP5(("We're going for the RDP4-style encryption\n"));                  DEBUG_RDP5(("We're going for the RDP4-style encryption\n"));
# Line 601  sec_parse_crypt_info(STREAM s, uint32 * Line 619  sec_parse_crypt_info(STREAM s, uint32 *
619          }          }
620          else          else
621          {          {
622                    uint32 certcount;
623    
624                  DEBUG_RDP5(("We're going for the RDP5-style encryption\n"));                  DEBUG_RDP5(("We're going for the RDP5-style encryption\n"));
625                  in_uint8s(s, 4);        /* Number of certificates */                  in_uint32_le(s, certcount);     /* Number of certificates */
626    
627                    if (certcount < 2)
628                    {
629                            error("Server didn't send enough X509 certificates\n");
630                            return False;
631                    }
632    
633                    for (; certcount > 2; certcount--)
634                    {               /* ignore all the certificates between the root and the signing CA */
635                            uint32 ignorelen;
636                            X509 *ignorecert;
637    
638                            DEBUG_RDP5(("Ignored certs left: %d\n", certcount));
639    
640                            in_uint32_le(s, ignorelen);
641                            DEBUG_RDP5(("Ignored Certificate length is %d\n", ignorelen));
642                            ignorecert = d2i_X509(NULL, &(s->p), ignorelen);
643    
644                            if (ignorecert == NULL)
645                            {       /* XXX: error out? */
646                                    DEBUG_RDP5(("got a bad cert: this will probably screw up the rest of the communication\n"));
647                            }
648    
649    #ifdef WITH_DEBUG_RDP5
650                            DEBUG_RDP5(("cert #%d (ignored):\n", certcount));
651                            X509_print_fp(stdout, ignorecert);
652    #endif
653                    }
654    
655                  /* Do da funky X.509 stuffy                  /* Do da funky X.509 stuffy
656    
# Line 614  sec_parse_crypt_info(STREAM s, uint32 * Line 662  sec_parse_crypt_info(STREAM s, uint32 *
662                   */                   */
663    
664                  in_uint32_le(s, cacert_len);                  in_uint32_le(s, cacert_len);
665                    DEBUG_RDP5(("CA Certificate length is %d\n", cacert_len));
666                  cacert = d2i_X509(NULL, &(s->p), cacert_len);                  cacert = d2i_X509(NULL, &(s->p), cacert_len);
667                  /* Note: We don't need to move s->p here - d2i_X509 is                  /* Note: We don't need to move s->p here - d2i_X509 is
668                     "kind" enough to do it for us */                     "kind" enough to do it for us */
# Line 634  sec_parse_crypt_info(STREAM s, uint32 * Line 683  sec_parse_crypt_info(STREAM s, uint32 *
683                   */                   */
684    
685                  in_uint32_le(s, cert_len);                  in_uint32_le(s, cert_len);
686                    DEBUG_RDP5(("Certificate length is %d\n", cert_len));
687                  server_cert = d2i_X509(NULL, &(s->p), cert_len);                  server_cert = d2i_X509(NULL, &(s->p), cert_len);
688                  if (NULL == server_cert)                  if (NULL == server_cert)
689                  {                  {
# Line 674  sec_process_crypt_info(STREAM s) Line 724  sec_process_crypt_info(STREAM s)
724    
725          DEBUG(("Generating client random\n"));          DEBUG(("Generating client random\n"));
726          /* Generate a client random, and hence determine encryption keys */          /* Generate a client random, and hence determine encryption keys */
727          generate_random(inr);          /* This is what the MS client do: */
728          // This is what the MS client do:          memset(inr, 0, SEC_RANDOM_SIZE);
729          //      memset(inr, 0, SEC_RANDOM_SIZE);          /*  *ARIGL!* Plaintext attack, anyone?
730          // *ARIGL!*             I tried doing:
731               generate_random(inr);
732               ..but that generates connection errors now and then (yes,
733               "now and then". Something like 0 to 3 attempts needed before a
734               successful connection. Nice. Not!
735             */
736    
737          generate_random(client_random);          generate_random(client_random);
738          if (NULL != server_public_key)          if (NULL != server_public_key)
739          {                       /* Which means we should use          {                       /* Which means we should use
# Line 705  sec_process_crypt_info(STREAM s) Line 761  sec_process_crypt_info(STREAM s)
761  static void  static void
762  sec_process_srv_info(STREAM s)  sec_process_srv_info(STREAM s)
763  {  {
764          in_uint16_le(s, server_rdp_version);          in_uint16_le(s, g_server_rdp_version);
765          DEBUG_RDP5(("Server RDP version is %d\n", server_rdp_version));          DEBUG_RDP5(("Server RDP version is %d\n", g_server_rdp_version));
766            if (1 == g_server_rdp_version)
767            {
768                    g_use_rdp5 = 0;
769                    g_server_bpp = 8;
770            }
771  }  }
772    
773    
# Line 718  sec_process_mcs_data(STREAM s) Line 779  sec_process_mcs_data(STREAM s)
779          uint8 *next_tag;          uint8 *next_tag;
780          uint8 len;          uint8 len;
781    
782          in_uint8s(s, 21);       /* header (T.124 stuff, probably) */          in_uint8s(s, 21);       /* header (T.124 ConferenceCreateResponse) */
783          in_uint8(s, len);          in_uint8(s, len);
784          if (len & 0x80)          if (len & 0x80)
785                  in_uint8(s, len);                  in_uint8(s, len);
# Line 739  sec_process_mcs_data(STREAM s) Line 800  sec_process_mcs_data(STREAM s)
800                                  sec_process_srv_info(s);                                  sec_process_srv_info(s);
801                                  break;                                  break;
802    
                         case SEC_TAG_SRV_3:  
                                 break;  
   
803                          case SEC_TAG_SRV_CRYPT:                          case SEC_TAG_SRV_CRYPT:
804                                  sec_process_crypt_info(s);                                  sec_process_crypt_info(s);
805                                  break;                                  break;
806    
807                            case SEC_TAG_SRV_CHANNELS:
808                                    /* FIXME: We should parse this information and
809                                       use it to map RDP5 channels to MCS
810                                       channels */
811                                    break;
812    
813                          default:                          default:
814                                  unimpl("response tag 0x%x\n", tag);                                  unimpl("response tag 0x%x\n", tag);
815                  }                  }
# Line 764  sec_recv(void) Line 828  sec_recv(void)
828    
829          while ((s = mcs_recv(&channel)) != NULL)          while ((s = mcs_recv(&channel)) != NULL)
830          {          {
831                  if (encryption || !licence_issued)                  if (g_encryption || !g_licence_issued)
832                  {                  {
833                          in_uint32_le(s, sec_flags);                          in_uint32_le(s, sec_flags);
834    
                         if (sec_flags & SEC_LICENCE_NEG)  
                         {  
                                 if (sec_flags & SEC_ENCRYPT) {  
                                         DEBUG_RDP5(("Encrypted license detected\n"));  
                                 }  
                                 licence_process(s);  
                                 continue;  
                         }  
   
835                          if (sec_flags & SEC_ENCRYPT)                          if (sec_flags & SEC_ENCRYPT)
836                          {                          {
837                                  in_uint8s(s, 8);        /* signature */                                  in_uint8s(s, 8);        /* signature */
838                                  sec_decrypt(s->p, s->end - s->p);                                  sec_decrypt(s->p, s->end - s->p);
839                          }                          }
840    
841                            if (sec_flags & SEC_LICENCE_NEG)
842                            {
843                                    licence_process(s);
844                                    continue;
845                            }
846                  }                  }
847    
848                  if (MCS_GLOBAL_CHANNEL == channel)                  if (channel != MCS_GLOBAL_CHANNEL)
849                  {                  {
850                          return s;                          channel_process(s, channel);
851                            continue;
852                  }                  }
                 else  
                         rdp5_process_channel(s, channel);  
853    
854                    return s;
855          }          }
856    
857          return NULL;          return NULL;
# Line 804  sec_connect(char *server, char *username Line 865  sec_connect(char *server, char *username
865    
866          /* We exchange some RDP data during the MCS-Connect */          /* We exchange some RDP data during the MCS-Connect */
867          mcs_data.size = 512;          mcs_data.size = 512;
868          mcs_data.p = mcs_data.data = (uint8*)xmalloc(mcs_data.size);          mcs_data.p = mcs_data.data = (uint8 *) xmalloc(mcs_data.size);
869          sec_out_mcs_data(&mcs_data);          sec_out_mcs_data(&mcs_data);
870    
871          if (!mcs_connect(server, &mcs_data, username))          if (!mcs_connect(server, &mcs_data, username))
872                  return False;                  return False;
873    
874          //      sec_process_mcs_data(&mcs_data);          /*      sec_process_mcs_data(&mcs_data); */
875          if (encryption)          if (g_encryption)
876                  sec_establish_key();                  sec_establish_key();
877          xfree(mcs_data.data);          xfree(mcs_data.data);
878          return True;          return True;

Legend:
Removed from v.376  
changed lines
  Added in v.710

  ViewVC Help
Powered by ViewVC 1.1.26