summaryrefslogtreecommitdiffstats
path: root/crypto/err
diff options
context:
space:
mode:
authorBen Laurie <ben@openssl.org>2002-06-11 12:41:37 +0000
committerBen Laurie <ben@openssl.org>2002-06-11 12:41:37 +0000
commitd15711efc6c82d5483dcf73ac7fa3ec5deb2c24a (patch)
tree4684ef0ec0db6e352b36006f98b1682a13fab9d7 /crypto/err
parent25ace3ed252a468d4d2b914a54863b2d539bb0b9 (diff)
Handle read errors.
Diffstat (limited to 'crypto/err')
-rw-r--r--crypto/err/err.c1
-rw-r--r--crypto/err/err.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/crypto/err/err.c b/crypto/err/err.c
index 04773d65a6..5abe44e6d5 100644
--- a/crypto/err/err.c
+++ b/crypto/err/err.c
@@ -166,6 +166,7 @@ static ERR_STRING_DATA ERR_str_functs[]=
{ERR_PACK(0,SYS_F_WSASTARTUP,0), "WSAstartup"},
#endif
{ERR_PACK(0,SYS_F_OPENDIR,0), "opendir"},
+ {ERR_PACK(0,SYS_F_FREAD,0), "fread"},
{0,NULL},
};
diff --git a/crypto/err/err.h b/crypto/err/err.h
index 76dc9e45d4..8728ff7c02 100644
--- a/crypto/err/err.h
+++ b/crypto/err/err.h
@@ -184,6 +184,7 @@ typedef struct err_state_st
#define SYS_F_ACCEPT 8
#define SYS_F_WSASTARTUP 9 /* Winsock stuff */
#define SYS_F_OPENDIR 10
+#define SYS_F_FREAD 11
/* reasons */