1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-02 22:46:30 +02:00

Preparing for 1.9.2 release.

This commit is contained in:
Werner Koch 2003-11-17 12:20:11 +00:00
parent 19d65e2b4b
commit fbb2d9de15
10 changed files with 92 additions and 33 deletions

View file

@ -37,6 +37,22 @@
#include "libjnlib-config.h"
#include "dotlock.h"
#if !defined(DIRSEP_C) && !defined(EXTSEP_C) \
&& !defined(DIRSEP_S) && !defined(EXTSEP_S)
#ifdef HAVE_DOSISH_SYSTEM
#define DIRSEP_C '\\'
#define EXTSEP_C '.'
#define DIRSEP_S "\\"
#define EXTSEP_S "."
#else
#define DIRSEP_C '/'
#define EXTSEP_C '.'
#define DIRSEP_S "/"
#define EXTSEP_S "."
#endif
#endif
struct dotlock_handle {
struct dotlock_handle *next;
char *tname; /* name of lockfile template */