summaryrefslogtreecommitdiffstats
path: root/src/voicecall.c
diff options
context:
space:
mode:
authorPhilippe Nunes <philippe.nunes@linux.intel.com>2012-09-05 19:19:38 +0200
committerDenis Kenzior <denkenz@gmail.com>2012-09-05 14:25:57 -0500
commit20138aed75efe2cc4394fefc6cdbe9c80b624e1d (patch)
tree40d316282c50ac566462338a9aa99cfcad318fce /src/voicecall.c
parentb7e92a714be1205657043d55b1f34016645525e4 (diff)
downloadofono-20138aed75efe2cc4394fefc6cdbe9c80b624e1d.tar.bz2
voicecall: Accept long phone number format for STK
Diffstat (limited to 'src/voicecall.c')
-rw-r--r--src/voicecall.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/voicecall.c b/src/voicecall.c
index 12e5d4e7..45dfac29 100644
--- a/src/voicecall.c
+++ b/src/voicecall.c
@@ -3675,7 +3675,7 @@ int __ofono_voicecall_dial(struct ofono_voicecall *vc,
{
struct dial_request *req;
- if (!valid_phone_number_format(addr))
+ if (!valid_long_phone_number_format(addr))
return -EINVAL;
if (vc->driver->dial == NULL)