diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2019-12-04 21:30:01 +0000 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2019-12-04 21:42:52 +0000 |
commit | 377da0430697e6bcb8c48744eb5af4272a8f8075 (patch) | |
tree | 74bd2bc270c49951bf5f7a3f1054c68f7523fbb9 | |
parent | 157609cd6700dff90203c8e05f6f60c705536129 (diff) |
Hurd: errno really uses more than a short-sized value. Bug 2476
-rw-r--r-- | src/src/structs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/src/structs.h b/src/src/structs.h index 1d867c5b6..9927bc527 100644 --- a/src/src/structs.h +++ b/src/src/structs.h @@ -648,11 +648,11 @@ typedef struct address_item { unsigned int domain_cache[(MAX_NAMED_LIST * 2)/32]; unsigned int localpart_cache[(MAX_NAMED_LIST * 2)/32]; int mode; /* mode for local transporting to a file */ + int basic_errno; /* status after failure */ int more_errno; /* additional error information */ /* (may need to hold a timestamp) */ unsigned int delivery_usec; /* subsecond part of delivery time */ - short int basic_errno; /* status after failure */ unsigned short child_count; /* number of child addresses */ short int return_file; /* fileno of return data file */ short int special_action; /* ( used when when deferred or failed */ |