Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 565276
Collapse All | Expand All

(-)a/packages/ssl/ssl4pl.c (-9 lines)
Lines 67-73 Link Here
67
static functor_t FUNCTOR_crl1;
67
static functor_t FUNCTOR_crl1;
68
static functor_t FUNCTOR_revocations1;
68
static functor_t FUNCTOR_revocations1;
69
static functor_t FUNCTOR_revoked2;
69
static functor_t FUNCTOR_revoked2;
70
static functor_t FUNCTOR_session_key1;
71
static functor_t FUNCTOR_master_key1;
70
static functor_t FUNCTOR_master_key1;
72
static functor_t FUNCTOR_session_id1;
71
static functor_t FUNCTOR_session_id1;
73
static functor_t FUNCTOR_client_random1;
72
static functor_t FUNCTOR_client_random1;
Lines 1537-1549 Link Here
1537
		        PL_INTEGER, (int)session->ssl_version))
1536
		        PL_INTEGER, (int)session->ssl_version))
1538
     return FALSE;
1537
     return FALSE;
1539
1538
1540
  if ( !PL_unify_list_ex(list_t, node_t, list_t) )
1541
    return FALSE;
1542
  if ( !PL_unify_term(node_t,
1543
		      PL_FUNCTOR, FUNCTOR_session_key1,
1544
		        PL_NCHARS, session->key_arg_length, session->key_arg))
1545
    return FALSE;
1546
1547
  if ( !PL_unify_list_ex(list_t, node_t, list_t))
1539
  if ( !PL_unify_list_ex(list_t, node_t, list_t))
1548
    return FALSE;
1540
    return FALSE;
1549
  if ( !PL_unify_term(node_t,
1541
  if ( !PL_unify_term(node_t,
Lines 1624-1630 Link Here
1624
  FUNCTOR_crl1            = PL_new_functor(PL_new_atom("crl"), 1);
1616
  FUNCTOR_crl1            = PL_new_functor(PL_new_atom("crl"), 1);
1625
  FUNCTOR_revoked2        = PL_new_functor(PL_new_atom("revoked"), 2);
1617
  FUNCTOR_revoked2        = PL_new_functor(PL_new_atom("revoked"), 2);
1626
  FUNCTOR_revocations1    = PL_new_functor(PL_new_atom("revocations"), 1);
1618
  FUNCTOR_revocations1    = PL_new_functor(PL_new_atom("revocations"), 1);
1627
  FUNCTOR_session_key1    = PL_new_functor(PL_new_atom("session_key"), 1);
1628
  FUNCTOR_master_key1     = PL_new_functor(PL_new_atom("master_key"), 1);
1619
  FUNCTOR_master_key1     = PL_new_functor(PL_new_atom("master_key"), 1);
1629
  FUNCTOR_session_id1     = PL_new_functor(PL_new_atom("session_id"), 1);
1620
  FUNCTOR_session_id1     = PL_new_functor(PL_new_atom("session_id"), 1);
1630
  FUNCTOR_client_random1  = PL_new_functor(PL_new_atom("client_random"), 1);
1621
  FUNCTOR_client_random1  = PL_new_functor(PL_new_atom("client_random"), 1);

Return to bug 565276