about summary refs log tree commit diff stats
path: root/src/resource.h
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2014-09-20 23:50:19 +0100
committerJames Booth <boothj5@gmail.com>2014-09-20 23:50:19 +0100
commit2fb998912380a8bb391bdb14b0106385acc5daf6 (patch)
tree64c0bd8a0d410187669ffa40272765eff93eb6b2 /src/resource.h
parent6e19476f6fe115ddcd96b69949f2d0576cdae254 (diff)
downloadprofani-tty-2fb998912380a8bb391bdb14b0106385acc5daf6.tar.gz
Added jid->hash lookup for capabilities
Diffstat (limited to 'src/resource.h')
-rw-r--r--src/resource.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/resource.h b/src/resource.h
index 342e1a2a..5c39d969 100644
--- a/src/resource.h
+++ b/src/resource.h
@@ -42,11 +42,10 @@ typedef struct resource_t {
     resource_presence_t presence;
     char *status;
     int priority;
-    char *caps_str;
 } Resource;
 
 Resource * resource_new(const char * const name, resource_presence_t presence,
-    const char * const status, const int priority, const char * const caps_str);
+    const char * const status, const int priority);
 void resource_destroy(Resource *resource);
 
 int resource_compare_availability(Resource *first, Resource *second);