diff options
author | David Reid <dreid@apache.org> | 2001-03-05 00:15:46 +0000 |
---|---|---|
committer | David Reid <dreid@apache.org> | 2001-03-05 00:15:46 +0000 |
commit | 3ea83c82dfc11073878bc049b4135440dee5ea9a (patch) | |
tree | e79dc12dd9829e5cef4d9c20b6b68bacd1fcfdf6 | |
parent | 5c2c8b9dfbce4e735b2f16b98d429dc105b34460 (diff) | |
download | apr-3ea83c82dfc11073878bc049b4135440dee5ea9a.tar.gz |
Not quite sure how this went unnoticed for so long...
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@61336 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | dso/beos/dso.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dso/beos/dso.c b/dso/beos/dso.c index a19366cfa..e6764944a 100644 --- a/dso/beos/dso.c +++ b/dso/beos/dso.c @@ -108,7 +108,7 @@ APR_DECLARE(apr_status_t) apr_dso_sym(apr_dso_handle_sym_t *ressym, apr_dso_hand APR_DECLARE(const char *) apr_dso_error(apr_dso_handle_t *dso, char *buffer, apr_size_t buflen) { - strncpy(strerror(errno), buffer, buflen); + strncpy(buffer, strerror(errno), buflen); return buffer; } |