unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
blob e92c0f6253636b435087680a562092feb352ed5e 377 bytes (raw)
name: compat/canonicalize_file_name.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
 
#include "compat.h"
#include <limits.h>
#undef _GNU_SOURCE
#include <stdlib.h>

char *
canonicalize_file_name (const char * path)
{
#ifdef 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 e92c0f62 ...
found e92c0f62 in https://yhetil.org/notmuch.git/

(*) 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).