Adjust to recent ObjFW changes.

This commit is contained in:
Jonathan Schleifer 2012-12-19 22:36:14 +01:00
parent 4978c42916
commit 20e111024e
4 changed files with 64 additions and 67 deletions

View file

@ -56,15 +56,15 @@
[message addItem: ""];
/* authcid */
[message addItemsFromCArray: [authcid UTF8String]
count: [authcid UTF8StringLength]];
[message addItems: [authcid UTF8String]
count: [authcid UTF8StringLength]];
/* separator */
[message addItem: ""];
/* passwd */
[message addItemsFromCArray: [password UTF8String]
count: [password UTF8StringLength]];
[message addItems: [password UTF8String]
count: [password UTF8StringLength]];
return message;
}