if ((fd = open(filename, O_WRONLY | O_CREAT | O_TRUNC, 0644))) {
if (file) {
if ((ifd = open(file, O_RDONLY | O_BINARY)) < 1) {
- rval = SWITCH_FALSE; goto end;
+ rval = SWITCH_FALSE;
+ goto end;
}
}
switch_snprintf(buf, B64BUFFLEN, "MIME-Version: 1.0\nContent-Type: multipart/mixed; boundary=\"%s\"\n", bound);
if (!write_buf(fd, buf)) {
- rval = SWITCH_FALSE; goto end;
+ rval = SWITCH_FALSE;
+ goto end;
}
- if (headers && !write_buf(fd, headers))
- rval = SWITCH_FALSE; goto end;
+ if (headers && !write_buf(fd, headers)) {
+ rval = SWITCH_FALSE;
+ goto end;
+ }
- if (!write_buf(fd, "\n\n"))
- rval = SWITCH_FALSE; goto end;
+ if (!write_buf(fd, "\n\n")) {
+ rval = SWITCH_FALSE;
+ goto end;
+ }
if (body && switch_stristr("content-type", body)) {
switch_snprintf(buf, B64BUFFLEN, "--%s\n", bound);
} else {
switch_snprintf(buf, B64BUFFLEN, "--%s\nContent-Type: text/plain\n\n", bound);
}
- if (!write_buf(fd, buf))
- rval = SWITCH_FALSE; goto end;
+ if (!write_buf(fd, buf)) {
+ rval = SWITCH_FALSE;
+ goto end;
+ }
if (body) {
if (!write_buf(fd, body)) {
- rval = SWITCH_FALSE; goto end;
+ rval = SWITCH_FALSE;
+ goto end;
}
}
"Content-Transfer-Encoding: base64\n"
"Content-Description: Sound attachment.\n"
"Content-Disposition: attachment; filename=\"%s\"\n\n", bound, mime_type, stipped_file, stipped_file);
- if (!write_buf(fd, buf))
- rval = SWITCH_FALSE; goto end;
+ if (!write_buf(fd, buf)) {
+ rval = SWITCH_FALSE;
+ goto end;
+ }
while ((ilen = read(ifd, in, B64BUFFLEN))) {
for (x = 0; x < ilen; x++) {
}
switch_snprintf(buf, B64BUFFLEN, "\n\n--%s--\n.\n", bound);
- if (!write_buf(fd, buf))
- rval = SWITCH_FALSE; goto end;
+
+ if (!write_buf(fd, buf)) {
+ rval = SWITCH_FALSE;
+ goto end;
+ }
}
if (fd) {