[Asterisk-code-review] res odbc: Correct the dependency relationship with res odbc... (asterisk[14])
George Joseph
asteriskteam at digium.com
Thu Aug 18 15:30:38 CDT 2016
George Joseph has uploaded a new change for review.
https://gerrit.asterisk.org/3644
Change subject: res_odbc: Correct the dependency relationship with res_odbc_transaction
......................................................................
res_odbc: Correct the dependency relationship with res_odbc_transaction
The MODULEINFO dependencies between these 2 modules was reversed.
res_odbc should depend on res_odbc_transaction, not the other way
around.
ASTERISK-25984 #close
Change-Id: Ifcfbb49c0b51cf6640a5446d47cd6c48caf1331f
---
M res/res_odbc.c
M res/res_odbc_transaction.c
2 files changed, 1 insertion(+), 1 deletion(-)
git pull ssh://gerrit.asterisk.org:29418/asterisk refs/changes/44/3644/1
diff --git a/res/res_odbc.c b/res/res_odbc.c
index 62faf98..f89b59e 100644
--- a/res/res_odbc.c
+++ b/res/res_odbc.c
@@ -41,6 +41,7 @@
/*** MODULEINFO
<depend>generic_odbc</depend>
+ <depend>res_odbc_transaction</depend>
<depend>ltdl</depend>
<support_level>core</support_level>
***/
diff --git a/res/res_odbc_transaction.c b/res/res_odbc_transaction.c
index de78600..569fcb2 100644
--- a/res/res_odbc_transaction.c
+++ b/res/res_odbc_transaction.c
@@ -26,7 +26,6 @@
#include "asterisk/module.h"
/*** MODULEINFO
- <depend>res_odbc</depend>
<support_level>core</support_level>
***/
--
To view, visit https://gerrit.asterisk.org/3644
To unsubscribe, visit https://gerrit.asterisk.org/settings
Gerrit-MessageType: newchange
Gerrit-Change-Id: Ifcfbb49c0b51cf6640a5446d47cd6c48caf1331f
Gerrit-PatchSet: 1
Gerrit-Project: asterisk
Gerrit-Branch: 14
Gerrit-Owner: George Joseph <gjoseph at digium.com>
More information about the asterisk-code-review
mailing list