From 1e6bdb36ecdf821b419985fb93d58d00cf46fab2 Mon Sep 17 00:00:00 2001 From: Denis Kenzior Date: Mon, 17 Aug 2009 15:29:01 -0500 Subject: [PATCH] Move clir-status enum out of common.h --- src/call-settings.c | 9 +++++++++ src/common.h | 9 --------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/call-settings.c b/src/call-settings.c index 6928ee2e..dda6e95e 100644 --- a/src/call-settings.c +++ b/src/call-settings.c @@ -40,6 +40,15 @@ static GSList *g_drivers = NULL; +/* 27.007 Section 7.7 */ +enum clir_status { + CLIR_STATUS_NOT_PROVISIONED = 0, + CLIR_STATUS_PROVISIONED_PERMANENT, + CLIR_STATUS_UNKNOWN, + CLIR_STATUS_TEMPORARY_RESTRICTED, + CLIR_STATUS_TEMPORARY_ALLOWED +}; + enum call_setting_type { CALL_SETTING_TYPE_CLIP = 0, CALL_SETTING_TYPE_COLP, diff --git a/src/common.h b/src/common.h index eeaa951f..6c2aeb2f 100644 --- a/src/common.h +++ b/src/common.h @@ -49,15 +49,6 @@ enum network_registration_status { NETWORK_REGISTRATION_STATUS_ROAMING = 5 }; -/* 27.007 Section 7.7 */ -enum clir_status { - CLIR_STATUS_NOT_PROVISIONED = 0, - CLIR_STATUS_PROVISIONED_PERMANENT, - CLIR_STATUS_UNKNOWN, - CLIR_STATUS_TEMPORARY_RESTRICTED, - CLIR_STATUS_TEMPORARY_ALLOWED -}; - /* 27.007 Section 7.6 */ enum clip_status { CLIP_STATUS_NOT_PROVISIONED = 0,