blob 3bd305d03775f0563eb550c2fe524744ab4259fa 514 bytes (raw)
name: util/util.c # note: path name is non-authoritative(*)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| | #include "util.h"
#include "error_util.h"
#include <string.h>
#include <errno.h>
const char *
util_error_string (util_status_t errnum)
{
switch (errnum) {
case UTIL_SUCCESS:
return "none";
case UTIL_OUT_OF_MEMORY:
return "out of memory";
case UTIL_EOF:
return "end of file";
case UTIL_ERRNO:
return strerror (errno);
case UTIL_GZERROR:
/* we lack context to be more informative here */
return "zlib error";
default:
INTERNAL_ERROR("unexpected error status %d", errnum);
}
}
|
debug log:
solving 3bd305d ...
found 3bd305d in https://yhetil.org/notmuch/1396712636-10640-3-git-send-email-david@tethera.net/ ||
https://yhetil.org/notmuch/1396712636-10640-1-git-send-email-david@tethera.net/
applying [1/1] https://yhetil.org/notmuch/1396712636-10640-3-git-send-email-david@tethera.net/
diff --git a/util/util.c b/util/util.c
new file mode 100644
index 0000000..3bd305d
Checking patch util/util.c...
Applied patch util/util.c cleanly.
skipping https://yhetil.org/notmuch/1396712636-10640-1-git-send-email-david@tethera.net/ for 3bd305d
index at:
100644 3bd305d03775f0563eb550c2fe524744ab4259fa util/util.c
(*) Git path names are given by the tree(s) the blob belongs to.
Blobs themselves have no identifier aside from the hash of its contents.^
Code repositories for project(s) associated with this public inbox
https://yhetil.org/notmuch.git/
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).