summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMatt O'Gorman <mogorman@digium.com>2006-06-06 19:51:26 +0000
committerMatt O'Gorman <mogorman@digium.com>2006-06-06 19:51:26 +0000
commit6c0155e6cb8ac044e5be79e796e7330329954618 (patch)
tree2e78fa04c1ab7feeafaf7f5b7097e398c4fdb9cf /include
parent835c77ccfa56815b51fc3daded4f7fd39f5e5cca (diff)
fixes some issues with description loggin on presence
as well as some typos. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@32675 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'include')
-rw-r--r--include/asterisk/jabber.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/asterisk/jabber.h b/include/asterisk/jabber.h
index ad76f5487..8b053623d 100644
--- a/include/asterisk/jabber.h
+++ b/include/asterisk/jabber.h
@@ -23,7 +23,7 @@
#include "asterisk/astobj.h"
enum aji_state {
- AJI_DISCONNECTED=0,
+ AJI_DISCONNECTED = 0,
AJI_CONNECTING,
AJI_CONNECTED
};
@@ -60,7 +60,7 @@ struct aji_capabilities {
struct aji_resource {
int status;
char resource[80];
- char description[1000];
+ char *description;
struct aji_version *cap;
int priority;
struct aji_resource *next;