Differences From Artifact [09b7294848]:
- File
src/XMPPEXTERNALAuth.m
— part of check-in
[cd21ff1157]
at
2018-11-05 22:30:18
on branch trunk
— Kill #ifdef HAVE_CONFIG_H
There no longer is an Xcode project for which it is needed. (user: js, size: 1768) [annotate] [blame] [check-ins using]
To Artifact [e1c935f11f]:
- File src/XMPPEXTERNALAuth.m — part of check-in [abf66b5c9b] at 2019-03-16 20:58:13 on branch trunk — Use dot syntax (user: js, size: 1821) [annotate] [blame] [check-ins using]
1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2012, Florian Zeitz <florob@babelmonkeys.de> * * https://heap.zone/objxmpp/ * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice is present in all copies. * | > | 1 2 3 4 5 6 7 8 9 10 | /* * Copyright (c) 2012, Florian Zeitz <florob@babelmonkeys.de> * Copyright (c) 2019, Jonathan Schleifer <js@heap.zone> * * https://heap.zone/objxmpp/ * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice is present in all copies. * |
︙ | ︙ | |||
40 41 42 43 44 45 46 | - (OFData *)initialMessage { OFMutableData *message = [OFMutableData data]; /* authzid */ if (_authzid != nil) | | | | 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | - (OFData *)initialMessage { OFMutableData *message = [OFMutableData data]; /* authzid */ if (_authzid != nil) [message addItems: _authzid.UTF8String count: _authzid.UTF8StringLength]; [message makeImmutable]; return message; } @end |