免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 4652 | 回复: 0
打印 上一主题 下一主题

[ldap] 警告:赋值时将整数赋给指针,未作类型转换 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-10-28 11:01 |只看该作者 |倒序浏览
小声的问一句,我编译在http://developer.novell.com/documentation/samplecode/cldap_sample/index.htm上的例子程序,编译的时候使用 gcc -lldap veriPassword.c 出现一个警告
veriPassword.c:45: 警告:赋值时将整数赋给指针,未作类型转换
就是if ((ld = ldap_init (ldapHost, ldapPort)) == NULL)
我man了一下ldap_init 返回值是LDAP*啊

请哪位帮我看看 问题处在哪了?多谢
#include <stdio.h>
#include <stdlib.h>
#include <ldap.h>



static char usage[] =
  "\n Usage:   verpass <host name> <port number> <login dn> <password>"
  "\n          <object dn> <test password>\n"
  "\n Example: verpass Acme.com 389 cn=admin,o=Acme secret"
  "\n          cn=james,ou=Sales,o=Acme testpass\n";


int
main (int argc, char *argv[])
{

  LDAP *ld;
  int version, ldapPort, rc;
  char *ldapHost, *loginDN, *password, *objectDN, *testPassword;
  struct timeval timeOut = { 10, 0 };    /* 10 second connection timeout */

if (argc != 7)
    {
      printf ("%s", usage);
      return (1);
    }

  ldapHost = argv[1];
  ldapPort = atoi (argv[2]);
  loginDN = argv[3];
  password = argv[4];
  objectDN = argv[5];
  testPassword = argv[6];

  /* Set LDAP version to 3 and set connection timeout. */
  ldap_set_option (NULL, LDAP_OPT_PROTOCOL_VERSION, &version);
  ldap_set_option (NULL, LDAP_OPT_NETWORK_TIMEOUT, &timeOut);

  /* Initialize the LDAP session */
  if ((ld = ldap_init (ldapHost, ldapPort)) == NULL)
    {
      printf ("\n\tLDAP session initialization failed\n");
      return (1);
    }
  printf ("\n\tLDAP session initialized\n");

  /* Bind to the server */
  rc = ldap_simple_bind_s (ld, loginDN, password);
  if (rc != LDAP_SUCCESS)
    {
      printf ("ldap_simple_bind_s: %s\n", ldap_err2string (rc));
      ldap_unbind_s (ld);
      return (1);
    }
  printf ("\n\tBind successful\n");


  /*
   * Compare the test password with the userPassword attribute
   * of the object.
   */

  rc = ldap_compare_s (ld,    /* LDAP session handle */
               objectDN,    /* the object to verify password on */
               "userPassword",    /* attribute to compare */
               testPassword);    /* the password to verify */

  if (rc == LDAP_COMPARE_TRUE)
    printf ("\n\tThe password is correct.\n");
  else if (rc == LDAP_COMPARE_FALSE)
    printf ("\n\tThe password is not correct.\n");
  else
    {
      printf ("\n\tldap_compare_s: %s\n", ldap_err2string (rc));
      ldap_unbind_s (ld);
      return (1);
    }

  ldap_unbind_s (ld);

  return (0);

  return 0;

}
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP