diff options
author | wrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68> | 2003-02-24 20:32:02 +0000 |
---|---|---|
committer | wrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68> | 2003-02-24 20:32:02 +0000 |
commit | f5bb451bedc85727216b8b5b3014386c38b5de68 (patch) | |
tree | 2917b76f843276b6a5851f1e3965854625a4f4c0 /misc | |
parent | 59ef127aee49f1c407607f5abf4fe5e8c138d6f6 (diff) | |
download | libapr-f5bb451bedc85727216b8b5b3014386c38b5de68.tar.gz |
APR_NOPROC is sort of bogus (we don't check args, remember?) but it really
didn't convey what we mean if a process *is* passed but not recognized by
APR as one of APR's own (e.g. calling unregister other child with an
unregistered process.) Add APR_EPROC_UNKNOWN for that definition.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@64372 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'misc')
-rw-r--r-- | misc/unix/errorcodes.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/misc/unix/errorcodes.c b/misc/unix/errorcodes.c index 98c529cae..d4820a184 100644 --- a/misc/unix/errorcodes.c +++ b/misc/unix/errorcodes.c @@ -164,6 +164,8 @@ static char *apr_error_string(apr_status_t statcode) return "The given path was above the root path"; case APR_EBADPATH: return "The given path misformatted or contained invalid characters"; + case APR_EPROC_UNKNOWN: + return "The process is not recognized."; default: return "Error string not specified yet"; } |