unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
blob 33b2f702a3a060f52fee43104f133e5cffbf4ee8 544 bytes (raw)
name: util/path-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
25
26
27
 
/*
 * SPDX-License-Identifier: GPL-3.0-or-later
 */

#define _GNU_SOURCE

#include "path-util.h"

#include <limits.h>
#include <stdlib.h>


char *
notmuch_canonicalize_file_name (const char *path)
{
#ifdef HAVE_CANONICALIZE_FILE_NAME
    return canonicalize_file_name (path);
#elif defined(PATH_MAX)
    char *resolved_path =  malloc (PATH_MAX + 1);
    if (resolved_path == NULL)
	return NULL;

    return realpath (path, resolved_path);
#else
#error undefined PATH_MAX _and_ missing canonicalize_file_name not supported
#endif
}

debug log:

solving 4b352baf ...
found 4b352baf in https://yhetil.org/notmuch/20210424005719.26456-1-congdanhqx@gmail.com/
found 000f9e78 in https://yhetil.org/notmuch.git/
preparing index
index prepared:
100644 000f9e781573e92b50bef8708962bffa0e08f2d6	compat/canonicalize_file_name.c

applying [1/1] https://yhetil.org/notmuch/20210424005719.26456-1-congdanhqx@gmail.com/
diff --git a/compat/canonicalize_file_name.c b/util/path-util.c\r
similarity index 52%\r
rename from compat/canonicalize_file_name.c\r
rename to util/path-util.c\r
index 000f9e78..4b352baf 100644\r

Checking patch compat/canonicalize_file_name.c => util/path-util.c...
Applied patch compat/canonicalize_file_name.c => util/path-util.c cleanly.

index at:
100644 33b2f702a3a060f52fee43104f133e5cffbf4ee8	util/path-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).