Skip to content
Snippets Groups Projects
Commit da1f7f0f authored by Kevin P. Fleming's avatar Kevin P. Fleming
Browse files

ensure that ENUM count requests that are invalid return zero, not blank (issue #6371)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@10064 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent c8b087ff
Branches
Tags
No related merge requests found
/*
* Asterisk -- An open source telephony toolkit.
*
* Copyright (C) 1999 - 2005, Digium, Inc.
* Copyright (C) 1999 - 2006, Digium, Inc.
*
* Mark Spencer <markster@digium.com>
*
......@@ -491,6 +491,7 @@ int ast_get_enum(struct ast_channel *chan, const char *number, char *dst, int ds
}
if (ret < 0) {
ast_log(LOG_DEBUG, "No such number found: %s (%s)\n", tmp, strerror(errno));
strcpy(dst, "0");
ret = 0;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment