]> git.sur5r.net Git - openldap/blobdiff - servers/slapd/back-shell/result.c
Cast ctype.h char arguments to unsigned char
[openldap] / servers / slapd / back-shell / result.c
index 1a749eb17adecf272d5ed2226570a630dff78d90..b4a538b2bd374c5bf45c33343c371a64ed52bc36 100644 (file)
@@ -2,7 +2,7 @@
 /* $OpenLDAP$ */
 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
  *
- * Copyright 1998-2004 The OpenLDAP Foundation.
+ * Copyright 1998-2006 The OpenLDAP Foundation.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
@@ -49,6 +49,7 @@ read_and_send_results(
        int     bsize, len;
        char    *buf, *bp;
        char    line[BUFSIZ];
+       char    ebuf[128];
 
        /* read in the result and send it along */
        buf = (char *) ch_malloc( BUFSIZ );
@@ -61,7 +62,7 @@ read_and_send_results(
                        if ( errno == EINTR ) continue;
 
                        Debug( LDAP_DEBUG_ANY, "shell: fgets failed: %s (%d)\n",
-                               strerror(errno), errno, 0 ); 
+                               AC_STRERROR_R(errno, ebuf, sizeof ebuf), errno, 0 ); 
                        break;
                }