summaryrefslogtreecommitdiff
path: root/src/analysis/binary.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2015-07-22 21:23:49 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2015-07-22 21:23:49 (GMT)
commit21537636cd8318cf5a720211619ad3c3023b52e9 (patch)
tree93380a9152f18e39cf0ba427ede96533c5c6f16a /src/analysis/binary.c
parent361a0953c73635c6c383516280a8d634768f8226 (diff)
Fortified the client/server protocol and first exchanges.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@554 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/analysis/binary.c')
-rw-r--r--src/analysis/binary.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/analysis/binary.c b/src/analysis/binary.c
index d7682cd..ade1131 100644
--- a/src/analysis/binary.c
+++ b/src/analysis/binary.c
@@ -157,7 +157,7 @@ static void g_loaded_binary_init(GLoadedBinary *binary)
binary->use_remote_server = false;
binary->storages[DBF_COMMENTS] = DBS_ALL_LOCAL;
- binary->storages[DBF_SEGMENTS_DISPLAY] = DBS_ALL_LOCAL;
+ binary->storages[DBF_DISPLAY_SWITCHERS] = DBS_ALL_LOCAL;
binary->storages[DBF_BOOKMARKS] = DBS_ALL_LOCAL;
binary->collections = create_collections_list();
@@ -412,7 +412,7 @@ static bool g_loaded_binary_load_storage(GLoadedBinary *binary, xmlXPathContextP
case DBF_COMMENTS:
access = stradd(access, "Comments");
break;
- case DBF_SEGMENTS_DISPLAY:
+ case DBF_DISPLAY_SWITCHERS:
access = stradd(access, "Segments");
break;
case DBF_BOOKMARKS:
@@ -507,7 +507,7 @@ static bool g_loaded_binary_save_storage(const GLoadedBinary *binary, xmlDocPtr
case DBF_COMMENTS:
access = stradd(access, "Comments");
break;
- case DBF_SEGMENTS_DISPLAY:
+ case DBF_DISPLAY_SWITCHERS:
access = stradd(access, "Segments");
break;
case DBF_BOOKMARKS: