Merge "app_voicemail: Fix test_voicemail_notify_endl test."

This commit is contained in:
Joshua Colp 2016-04-13 05:21:05 -05:00 committed by Gerrit Code Review
commit fddec0c266
1 changed files with 2 additions and 0 deletions

View File

@ -14456,11 +14456,13 @@ AST_TEST_DEFINE(test_voicemail_notify_endl)
rewind(file);
while (fgets(buf, sizeof(buf), file)) {
if (
(strlen(buf) > 1 &&
#ifdef IMAP_STORAGE
buf[strlen(buf) - 2] != '\r'
#else
buf[strlen(buf) - 2] == '\r'
#endif
)
|| buf[strlen(buf) - 1] != '\n') {
res = AST_TEST_FAIL;
}