Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
jami-daemon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
savoirfairelinux
jami-daemon
Commits
a9f92b3b
Commit
a9f92b3b
authored
13 years ago
by
Rafaël Carré
Browse files
Options
Downloads
Patches
Plain Diff
process_conference_participant_from_serialized() : remove unused function
parent
54caf564
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
sflphone-client-gnome/src/conference_obj.c
+0
-22
0 additions, 22 deletions
sflphone-client-gnome/src/conference_obj.c
with
0 additions
and
22 deletions
sflphone-client-gnome/src/conference_obj.c
+
0
−
22
View file @
a9f92b3b
...
...
@@ -38,8 +38,6 @@
static
void
set_conference_timestamp
(
time_t
*
);
static
void
conference_add_participant_number
(
const
gchar
*
,
conference_obj_t
*
);
static
void
process_conference_participant_from_serialized
(
gchar
*
,
conference_obj_t
*
);
static
void
set_conference_timestamp
(
time_t
*
timestamp
)
{
time_t
tmp
;
...
...
@@ -337,23 +335,3 @@ void create_conference_history_entry_from_serialized(gchar *entry, conference_ob
(
*
conf
)
->
_recordfile
=
g_strdup
(
recordfile
);
}
static
void
process_conference_participant_from_serialized
(
gchar
*
participant
,
conference_obj_t
*
conf
)
{
gchar
**
ptr
=
NULL
;
gchar
*
delim
=
";"
;
gint
tok
=
0
;
DEBUG
(
"Conference: Process participant from serialized form"
);
ptr
=
g_strsplit
(
participant
,
delim
,
3
);
while
(
ptr
!=
NULL
&&
(
tok
<
2
))
{
gchar
*
call_id
=
NULL
;
conference_add_participant
(
call_id
,
conf
);
tok
++
;
ptr
++
;
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment