unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
blob 75df0ead1b92db55f6b8d3a8f118a7a4a931eba0 518 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 "debug_print.h"
#include <string.h>
#include <errno.h>

const char *
util_error_string (util_status_t errnum)
{
    switch (errnum) {
    case UTIL_SUCCESS:
	return "success";
    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 75df0ead ...
found 75df0ead in https://yhetil.org/notmuch/20180830112915.11761-2-david@tethera.net/ ||
	https://yhetil.org/notmuch/20180730224555.26047-2-david@tethera.net/ ||
	https://yhetil.org/notmuch/20180720233746.2844-2-david@tethera.net/
found 06659b35 in https://yhetil.org/notmuch.git/
preparing index
index prepared:
100644 06659b3506b1f384a4affa58560cff8acbca779d	util/util.c

applying [1/1] https://yhetil.org/notmuch/20180830112915.11761-2-david@tethera.net/
diff --git a/util/util.c b/util/util.c
index 06659b35..75df0ead 100644

Checking patch util/util.c...
Applied patch util/util.c cleanly.

skipping https://yhetil.org/notmuch/20180730224555.26047-2-david@tethera.net/ for 75df0ead
skipping https://yhetil.org/notmuch/20180720233746.2844-2-david@tethera.net/ for 75df0ead
index at:
100644 75df0ead1b92db55f6b8d3a8f118a7a4a931eba0	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).