Changeset 9f03c47 for protocols/purple
- Timestamp:
- 2016-11-14T00:37:14Z (8 years ago)
- Branches:
- master
- Children:
- 537d9b9, b4f496e
- Parents:
- ea90275
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/purple/purple.c
rea90275 r9f03c47 1725 1725 for (prots = purple_plugins_get_protocols(); prots; prots = prots->next) { 1726 1726 PurplePlugin *prot = prots->data; 1727 PurplePluginProtocolInfo *pi = prot->info->extra_info; 1727 1728 struct prpl *ret; 1728 1729 … … 1738 1739 ret->name += 5; 1739 1740 } 1741 1742 if (pi->options & OPT_PROTO_NO_PASSWORD) { 1743 ret->options |= PRPL_OPT_NO_PASSWORD; 1744 } 1745 1746 if (pi->options & OPT_PROTO_PASSWORD_OPTIONAL) { 1747 ret->options |= PRPL_OPT_PASSWORD_OPTIONAL; 1748 } 1749 1740 1750 register_protocol(ret); 1741 1751
Note: See TracChangeset
for help on using the changeset viewer.