提交 0ff988b1 authored 作者: Anthony Minessale's avatar Anthony Minessale

c'mon wtf

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@5677 d0543943-73ff-0310-b7d9-9358b9ac24b2
上级 88e5470c
......@@ -88,7 +88,8 @@ static switch_status_t my_on_hangup(switch_core_session_t *session)
if(!switch_strlen_zero(logdir)) {
if ((path = switch_mprintf("%s/xml_cdr/%s.cdr.xml", logdir, switch_core_session_get_uuid(session)))) {
if ((fd = open(path, O_WRONLY | O_CREAT | O_TRUNC, S_IRUSR | S_IWUSR)) > -1) {
write(fd, xml_text, (unsigned) strlen(xml_text));
int wrote;
wrote = write(fd, xml_text, (unsigned) strlen(xml_text));
close(fd);
fd = -1;
} else {
......@@ -160,7 +161,8 @@ static switch_status_t my_on_hangup(switch_core_session_t *session)
if ((path = switch_mprintf("%s/%s.cdr.xml", globals.errLogDir, switch_core_session_get_uuid(session)))) {
if ((fd = open(path, O_WRONLY | O_CREAT | O_TRUNC, S_IRUSR | S_IWUSR)) > -1) {
write(fd, xml_text, (unsigned) strlen(xml_text));
int wrote;
wrote = write(fd, xml_text, (unsigned) strlen(xml_text));
close(fd);
fd = -1;
} else {
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论