c'mon wtf

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@5677 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Anthony Minessale 2007-08-29 19:33:27 +00:00
parent 88e5470c52
commit 0ff988b19e
1 changed files with 4 additions and 2 deletions

View File

@ -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 {