diff options
author | David Shaw <[email protected]> | 2005-12-06 20:54:05 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2005-12-06 20:54:05 +0000 |
commit | bc1c4af8c3ce3ca4ba0ae2b01843553e415dbb51 (patch) | |
tree | 582ab2438b8763ab3779f7a98f5d94d41cf4f4b4 /g10 | |
parent | * idea-stub.c (load_module): Not legal to return a void * as a function (diff) | |
download | gnupg-bc1c4af8c3ce3ca4ba0ae2b01843553e415dbb51.tar.gz gnupg-bc1c4af8c3ce3ca4ba0ae2b01843553e415dbb51.zip |
Some cleanup so we don't build files that are completely ifdeffed out.
This causes a warning on Sun's cc. Do the internal regex code as well for
consistency.
Diffstat (limited to '')
-rw-r--r-- | g10/trustdb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/g10/trustdb.c b/g10/trustdb.c index 7269afc31..bb5167ea9 100644 --- a/g10/trustdb.c +++ b/g10/trustdb.c @@ -28,7 +28,7 @@ #ifndef DISABLE_REGEX #include <sys/types.h> -#ifdef USE_GNU_REGEX +#ifdef USE_INTERNAL_REGEX #include "_regex.h" #else #include <regex.h> |