X-Git-Url: http://git.eversberg.eu/gitweb.cgi?p=lcr.git;a=blobdiff_plain;f=socket_server.c;h=70895b0a531df149c2483dc2910a8fb8f5274e2b;hp=30830853320aa7f0e61dc76fab06782b5bd7a6a4;hb=be404a4926ba076c5e2019b88e790e3f14ff11ff;hpb=8bb49ccb7b3eba0a3f20d3b097541304b3580f70 diff --git a/socket_server.c b/socket_server.c index 3083085..70895b0 100644 --- a/socket_server.c +++ b/socket_server.c @@ -538,7 +538,7 @@ int admin_call(struct admin_list *admin, struct admin_message *msg) /* * this function is called for response whenever a call state changes. */ -void admin_call_response(int adminid, int message, const char *connected, int cause, int location, int notify) +void admin_call_response(int adminid, int message, const char *connected, int cause, int location, int notify_progress) { struct admin_list *admin; struct admin_queue *response, **responsep; /* response pointer */ @@ -573,7 +573,7 @@ void admin_call_response(int adminid, int message, const char *connected, int ca SCPY(response->am[0].u.call.callerid, connected); response->am[0].u.call.cause = cause; response->am[0].u.call.location = location; - response->am[0].u.call.notify = notify; + response->am[0].u.call.notify_progress = notify_progress; /* attach to response chain */ *responsep = response;