Changeset ba5add7 for otr.h


Ignore:
Timestamp:
2008-02-17T01:39:39Z (16 years ago)
Author:
Sven Moritz Hallberg <sm@…>
Branches:
master
Children:
82e8fe8
Parents:
fd9fa52
Message:

explicitly initialize ssl in order to avoid gnutls and libotr fighting over the global state of libgcrypt

File:
1 edited

Legend:

Unmodified
Added
Removed
  • otr.h

    rfd9fa52 rba5add7  
    5151/* representing a keygen job */
    5252typedef struct kg {
    53         const char *accountname;
    54         const char *protocol;
     53        char *accountname;
     54        char *protocol;
    5555       
    5656        struct kg *next;
     
    6565       
    6666        /* active keygen job (NULL if none) */
    67         const char *sent_accountname;
    68         const char *sent_protocol;
     67        char *sent_accountname;
     68        char *sent_protocol;
    6969       
    7070        /* keygen jobs waiting to be sent to slave */
Note: See TracChangeset for help on using the changeset viewer.