Changeset 59432 in vbox for trunk/src/VBox/Runtime/common/crypto
- Timestamp:
- Jan 21, 2016 9:28:09 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 105168
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/crypto/x509-certpaths.cpp
r57358 r59432 29 29 * Header Files * 30 30 *********************************************************************************************************************************/ 31 #define LOG_GROUP RTLOGGROUP_CRYPTO 31 32 #include "internal/iprt.h" 32 33 #include <iprt/crypto/x509.h> … … 38 39 #include <iprt/string.h> 39 40 #include <iprt/list.h> 41 #include <iprt/log.h> 40 42 #include <iprt/time.h> 41 43 #include <iprt/crypto/pkcs7.h> /* PCRTCRPKCS7SETOFCERTS */ … … 920 922 pCur = rtCrX509CertPathsAddLeaf(pThis, pCur); 921 923 } 924 if (pCur) 925 Log2(("RTCrX509CertPathsBuild: pCur=%p fLeaf=%d pParent=%p pNext=%p pPrev=%p\n", 926 pCur, pCur->fLeaf, pCur->pParent, 927 pCur->pParent ? RTListGetNext(&pCur->pParent->ChildListOrLeafEntry, pCur, RTCRX509CERTPATHNODE, SiblingEntry) : NULL, 928 pCur->pParent ? RTListGetPrev(&pCur->pParent->ChildListOrLeafEntry, pCur, RTCRX509CERTPATHNODE, SiblingEntry) : NULL)); 922 929 } while (pCur); 923 930
Note:
See TracChangeset
for help on using the changeset viewer.