Changes due to rename of platutils.c to platform.c.
This commit is contained in:
parent
4f9fa1a152
commit
47f4dbb6b7
@ -58,7 +58,7 @@ GetUserCredentials(
|
|||||||
// Description:
|
// Description:
|
||||||
// Get authentication credentials for the specified realm.
|
// Get authentication credentials for the specified realm.
|
||||||
//
|
//
|
||||||
// L0
|
// L2
|
||||||
//=======================================================================--
|
//=======================================================================--
|
||||||
{
|
{
|
||||||
CasaStatus retStatus = CasaStatusBuild(CASA_SEVERITY_ERROR,
|
CasaStatus retStatus = CasaStatusBuild(CASA_SEVERITY_ERROR,
|
||||||
@ -72,6 +72,7 @@ GetUserCredentials(
|
|||||||
SSCS_SECRET_ID_T secretId = {0};
|
SSCS_SECRET_ID_T secretId = {0};
|
||||||
SSCS_SECRET_ID_T sharedSecretId = {0};
|
SSCS_SECRET_ID_T sharedSecretId = {0};
|
||||||
|
|
||||||
|
|
||||||
DbgTrace(1, "-GetUserCredentials- Start\n", 0);
|
DbgTrace(1, "-GetUserCredentials- Start\n", 0);
|
||||||
|
|
||||||
// Initialize output parameters
|
// Initialize output parameters
|
||||||
@ -93,7 +94,7 @@ GetUserCredentials(
|
|||||||
rcode = miCASAGetCredential(0,
|
rcode = miCASAGetCredential(0,
|
||||||
&secretId,
|
&secretId,
|
||||||
NULL,
|
NULL,
|
||||||
&credtype, //SSCS_CRED_TYPE_BASIC_F,
|
&credtype,
|
||||||
&credential,
|
&credential,
|
||||||
NULL);
|
NULL);
|
||||||
if (rcode != NSSCS_SUCCESS)
|
if (rcode != NSSCS_SUCCESS)
|
||||||
@ -105,7 +106,7 @@ GetUserCredentials(
|
|||||||
rcode = miCASAGetCredential(0,
|
rcode = miCASAGetCredential(0,
|
||||||
&secretId,
|
&secretId,
|
||||||
NULL,
|
NULL,
|
||||||
&credtype, //SSCS_CRED_TYPE_BASIC_F,
|
&credtype,
|
||||||
&credential,
|
&credential,
|
||||||
NULL);
|
NULL);
|
||||||
}
|
}
|
||||||
@ -224,7 +225,7 @@ AuthTokenIf_GetAuthToken(
|
|||||||
// Description:
|
// Description:
|
||||||
// Get authentication token to authenticate user to specified service.
|
// Get authentication token to authenticate user to specified service.
|
||||||
//
|
//
|
||||||
// L0
|
// L2
|
||||||
//=======================================================================--
|
//=======================================================================--
|
||||||
{
|
{
|
||||||
CasaStatus retStatus;
|
CasaStatus retStatus;
|
||||||
@ -277,8 +278,6 @@ AuthTokenIf_GetAuthToken(
|
|||||||
if (encodedTokenLen > *pTokenBufLen)
|
if (encodedTokenLen > *pTokenBufLen)
|
||||||
{
|
{
|
||||||
// The buffer is not big enough
|
// The buffer is not big enough
|
||||||
DbgTrace(1, "-AuthTokenIf_GetAuthToken- Insufficient buffer space provided\n", 0);
|
|
||||||
|
|
||||||
retStatus = CasaStatusBuild(CASA_SEVERITY_ERROR,
|
retStatus = CasaStatusBuild(CASA_SEVERITY_ERROR,
|
||||||
CASA_FACILITY_PWTOKEN,
|
CASA_FACILITY_PWTOKEN,
|
||||||
CASA_STATUS_BUFFER_OVERFLOW);
|
CASA_STATUS_BUFFER_OVERFLOW);
|
||||||
@ -339,13 +338,14 @@ InitializeLibrary(void)
|
|||||||
//
|
//
|
||||||
// Notes:
|
// Notes:
|
||||||
//
|
//
|
||||||
// L0
|
// L2
|
||||||
//=======================================================================--
|
//=======================================================================--
|
||||||
{
|
{
|
||||||
int retStatus = 0;
|
int retStatus = 0;
|
||||||
|
|
||||||
DbgTrace(1, "-InitializeLibrary- Start\n", 0);
|
DbgTrace(1, "-InitializeLibrary- Start\n", 0);
|
||||||
|
|
||||||
|
// Nothing to do at this time.
|
||||||
|
|
||||||
DbgTrace(1, "-InitializeLibrary- End, retStatus = %08X\n", retStatus);
|
DbgTrace(1, "-InitializeLibrary- End, retStatus = %08X\n", retStatus);
|
||||||
|
|
||||||
|
@ -1,35 +0,0 @@
|
|||||||
/***********************************************************************
|
|
||||||
*
|
|
||||||
* Copyright (C) 2006 Novell, Inc. All Rights Reserved.
|
|
||||||
*
|
|
||||||
* This library is free software; you can redistribute it and/or
|
|
||||||
* modify it under the terms of the GNU Lesser General Public
|
|
||||||
* License as published by the Free Software Foundation; version 2.1
|
|
||||||
* of the License.
|
|
||||||
*
|
|
||||||
* This library is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Library Lesser General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
|
||||||
* License along with this library; if not, Novell, Inc.
|
|
||||||
*
|
|
||||||
* To contact Novell about this file by physical or electronic mail,
|
|
||||||
* you may find current contact information at www.novell.com.
|
|
||||||
*
|
|
||||||
* Author: Juan Carlos Luciani <jluciani@novell.com>
|
|
||||||
*
|
|
||||||
***********************************************************************/
|
|
||||||
|
|
||||||
//===[ Include files ]=====================================================
|
|
||||||
|
|
||||||
#include "internal.h"
|
|
||||||
|
|
||||||
//===[ Type definitions ]==================================================
|
|
||||||
|
|
||||||
//===[ Function prototypes ]===============================================
|
|
||||||
|
|
||||||
//===[ Global variables ]==================================================
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user