aboutsummaryrefslogtreecommitdiffstats
path: root/g10/openfile.c
diff options
context:
space:
mode:
authorDavid Shaw <[email protected]>2003-05-24 21:50:33 +0000
committerDavid Shaw <[email protected]>2003-05-24 21:50:33 +0000
commit3a23c4230bc61f905a316c2df9116d871fd9029f (patch)
tree6e913e8b23f538fb0bf19e213568a140f077b54e /g10/openfile.c
parent* bftest.c, crlf.c, mk-tdata.c, mpicalc.c, shmtest.c: Edit all (diff)
downloadgnupg-3a23c4230bc61f905a316c2df9116d871fd9029f.tar.gz
gnupg-3a23c4230bc61f905a316c2df9116d871fd9029f.zip
* armor.c, g10.c, kbnode.c, misc.c, pkclist.c, sign.c, build-packet.c,
getkey.c, keydb.c, openfile.c, plaintext.c, status.c, gpgv.c, keygen.c, options.h, sig-check.c, tdbio.h, encode.c, mainproc.c, parse-packet.c, signal.c, textfilter.c: Edit all preprocessor instructions to remove whitespace before the '#'. This is not required by C89, but there are some compilers out there that don't like it.
Diffstat (limited to '')
-rw-r--r--g10/openfile.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/g10/openfile.c b/g10/openfile.c
index 81e5d2d43..854589641 100644
--- a/g10/openfile.c
+++ b/g10/openfile.c
@@ -37,20 +37,20 @@
#include "i18n.h"
#ifdef USE_ONLY_8DOT3
- #define SKELEXT ".skl"
+#define SKELEXT ".skl"
#else
- #define SKELEXT EXTSEP_S "skel"
+#define SKELEXT EXTSEP_S "skel"
#endif
#if defined (HAVE_DRIVE_LETTERS) || defined (__riscos__)
- #define CMP_FILENAME(a,b) ascii_strcasecmp( (a), (b) )
+#define CMP_FILENAME(a,b) ascii_strcasecmp( (a), (b) )
#else
- #define CMP_FILENAME(a,b) strcmp( (a), (b) )
+#define CMP_FILENAME(a,b) strcmp( (a), (b) )
#endif
#ifdef MKDIR_TAKES_ONE_ARG
-# undef mkdir
-# define mkdir(a,b) mkdir(a)
+#undef mkdir
+#define mkdir(a,b) mkdir(a)
#endif
/* FIXME: Implement opt.interactive. */