mirror of
https://github.com/PentHertz/OpenBTS.git
synced 2026-05-01 04:49:27 +00:00
Had error code backwards for SR, caused spurious SR failure messages. Fixed.
git-svn-id: http://wush.net/svn/range/software/public/openbts/trunk@3356 19bc5d8c-e614-43d4-8b26-e1612bc8e597
This commit is contained in:
parent
793ff7e859
commit
3b32f8f1a4
3 changed files with 5 additions and 5 deletions
|
|
@ -239,7 +239,7 @@ bool RRLPServer::transact()
|
|||
//Rejection code only useful if we're gathering IMEIs
|
||||
if (gConfig.defines("Control.LUR.QueryIMEI")){
|
||||
// flag unsupported in SR so we don't waste time on it again
|
||||
if (!gSubscriberRegistry.imsiSet(name, "RRLPSupported", "0")) {
|
||||
if (gSubscriberRegistry.imsiSet(name, "RRLPSupported", "0")) {
|
||||
LOG(INFO) << "SR update problem";
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue