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:
Kurtis Heimerl 2012-03-23 06:25:20 +00:00
parent 793ff7e859
commit 3b32f8f1a4
3 changed files with 5 additions and 5 deletions

View file

@ -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";
}
}