Remove an unnecessary cast, obviating the need for <stdint.h> which

apparently isn't present on some platforms (e.g. Solaris 8)


git-svn-id: svn+ssh://svn.openpam.org/svn/openpam/trunk@281 185d5e19-27fe-0310-9dcf-9bff6b9f3609
This commit is contained in:
Dag-Erling Smørgrav 2004-07-27 12:07:13 +00:00
parent 58b2c9d06a
commit 2486034511
1 changed files with 2 additions and 3 deletions

View File

@ -31,10 +31,9 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $P4: //depot/projects/openpam/lib/pam_get_data.c#13 $
* $P4: //depot/projects/openpam/lib/pam_get_data.c#14 $
*/
#include <stdint.h>
#include <string.h>
#include <security/pam_appl.h>
@ -60,7 +59,7 @@ pam_get_data(pam_handle_t *pamh,
RETURNC(PAM_SYSTEM_ERR);
for (dp = pamh->module_data; dp != NULL; dp = dp->next) {
if (strcmp(dp->name, module_data_name) == 0) {
*data = (void *)(intptr_t)dp->data;
*data = (void *)dp->data;
RETURNC(PAM_SUCCESS);
}
}