You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by jf...@apache.org on 2001/06/05 17:17:01 UTC

cvs commit: apr-iconv/lib iconv_module.c

jfclere     01/06/05 08:17:01

  Modified:    lib      iconv_module.c
  Log:
  Use APR_EFTYPE instead APR_ICONV_EFTYPE.
  
  Revision  Changes    Path
  1.6       +1 -1      apr-iconv/lib/iconv_module.c
  
  Index: iconv_module.c
  ===================================================================
  RCS file: /home/cvs/apr-iconv/lib/iconv_module.c,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- iconv_module.c	2001/05/22 07:40:29	1.5
  +++ iconv_module.c	2001/06/05 15:17:01	1.6
  @@ -120,7 +120,7 @@
   		return error;
   	if (modtype != ICMOD_ANY && mdesc->imd_type != modtype) {
   		apr_dso_unload(handle);
  -		return APR_ICONV_EFTYPE;
  +		return APR_EFTYPE;
   	}
   	mod = malloc(sizeof(*mod));
   	if (mod == NULL) {