abookadd.c
上传用户:s81996212
上传日期:2007-01-04
资源大小:722k
文件大小:0k
源码类别:

WEB邮件程序

开发平台:

C/C++

  1. #include "config.h"
  2. #include "ldapaddressbook.h"
  3. #include <stdio.h>
  4. #include <string.h>
  5. #include <stdlib.h>
  6. int ldapabook_add(const char *f, const struct ldapabook *a)
  7. {
  8. FILE *fp=fopen(f, "a");
  9. if (!fp) return (-1);
  10. fprintf(fp, "%st%st%st%st%st%sn", a->name, a->host, a->port,
  11. a->suffix, a->binddn, a->bindpw);
  12. if (fflush(fp) || fclose(fp))
  13. {
  14. fclose(fp);
  15. return (-1);
  16. }
  17. return (0);
  18. }