]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Fix over zealous whitespace replacement
authorArran Cudbard-Bell <a.cudbardb@freeradius.org>
Mon, 10 Dec 2012 00:22:06 +0000 (00:22 +0000)
committerArran Cudbard-Bell <a.cudbardb@freeradius.org>
Mon, 10 Dec 2012 00:22:06 +0000 (00:22 +0000)
src/modules/rlm_opendirectory/rlm_opendirectory.c

index fa93d93af2f942cafde51836336c1bed07c22ac2..2204442b5a851a71fc152f6ecd73d07313d301e5 100644 (file)
@@ -62,34 +62,34 @@ int mbr_check_membership_refresh(const uuid_t user, uuid_t group, int *ismember)
 
 static long od_check_passwd(const char *uname, const char *password)
 {
-       long                    result = eDSAuthFailed;
-       tDirReference           dsRef = 0;
+       long                    result          = eDSAuthFailed;
+       tDirReference           dsRef           = 0;
        tDataBuffer             *tDataBuff;
-       tDirNodeReference       nodeRef = 0;
-       long                    status = eDSNoErr;
-       tContextData            context = 0;
-       unsigned long           nodeCount = 0;
-       uint32_t                attrIndex = 0;
-       tDataList               *nodeName;
-       tAttributeEntryPtr      pAttrEntry;
-       tDataList               *pRecName;
-       tDataList               *pRecType;
-       tDataList               *pAttrType;
-       unsigned long           recCount = 0;
-       tRecordEntry            *pRecEntry;
-       tAttributeListRef       attrListRef = 0;
-       char                    *pUserLocation;
-       char                    *pUserName;
-       tAttributeValueListRef  valueRef = 0;
-       tAttributeValueEntry    *pValueEntry;
-       tDataList               *pUserNode;
-       tDirNodeReference       userNodeRef = 0;
-       tDataBuffer             *pStepBuff;
-       tDataNode               *pAuthType;
-       tAttributeValueEntry    *pRecordType;
-       uint32_t                uiCurr = 0;
-       uint32_t                uiLen = 0;
-       uint32_t                pwLen = 0;
+       tDirNodeReference       nodeRef         = 0;
+       long                    status          = eDSNoErr;
+       tContextData            context         = 0;
+       unsigned long           nodeCount       = 0;
+       uint32_t                attrIndex       = 0;
+       tDataList               *nodeName       = NULL;
+       tAttributeEntryPtr      pAttrEntry      = NULL;
+       tDataList               *pRecName       = NULL;
+       tDataList               *pRecType       = NULL;
+       tDataList               *pAttrType      = NULL;
+       unsigned long           recCount        = 0;
+       tRecordEntry            *pRecEntry      = NULL;
+       tAttributeListRef       attrListRef     = 0;
+       char                    *pUserLocation  = NULL;
+       char                    *pUserName      = NULL;
+       tAttributeValueListRef  valueRef        = 0;
+       tAttributeValueEntry    *pValueEntry    = NULL;
+       tDataList               *pUserNode      = NULL;
+       tDirNodeReference       userNodeRef     = 0;
+       tDataBuffer             *pStepBuff      = NULL;
+       tDataNode               *pAuthType      = NULL;
+       tAttributeValueEntry    *pRecordType    = NULL;
+       uint32_t                uiCurr          = 0;
+       uint32_t                uiLen           = 0;
+       uint32_t                pwLen           = 0;
        
        if (uname == NULL || password == NULL)
                return result;