diff options
author | Werner Koch <[email protected]> | 2008-10-20 13:53:23 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2008-10-20 13:53:23 +0000 |
commit | 0a5f7424660e404e5fd0361b9331d154acf01d6c (patch) | |
tree | b84fb5a994045e12eb326441d8c924094bd915cd /g10/misc.c | |
parent | Fix a bug in estream_snprintf. Found by a failed t-gettime under Windows. (diff) | |
download | gnupg-0a5f7424660e404e5fd0361b9331d154acf01d6c.tar.gz gnupg-0a5f7424660e404e5fd0361b9331d154acf01d6c.zip |
Marked all unused args on non-W32 platforms.
Diffstat (limited to '')
-rw-r--r-- | g10/misc.c | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/g10/misc.c b/g10/misc.c index a9d4f0547..cbaee08b5 100644 --- a/g10/misc.c +++ b/g10/misc.c @@ -121,7 +121,9 @@ register_secured_file (const char *fname) sf->dev = buf.st_dev; sf->next = secured_files; secured_files = sf; -#endif /*ENABLE_SELINUX_HACKS*/ +#else /*!ENABLE_SELINUX_HACKS*/ + (void)fname; +#endif /*!ENABLE_SELINUX_HACKS*/ } /* Remove a file registered as secure. */ @@ -152,7 +154,9 @@ unregister_secured_file (const char *fname) return; } } -#endif /*ENABLE_SELINUX_HACKS*/ +#else /*!ENABLE_SELINUX_HACKS*/ + (void)fname; +#endif /*!ENABLE_SELINUX_HACKS*/ } /* Return true if FD is corresponds to a secured file. Using -1 for @@ -182,7 +186,9 @@ is_secured_file (int fd) if (sf->ino == buf.st_ino && sf->dev == buf.st_dev) return 1; /* Yes. */ } -#endif /*ENABLE_SELINUX_HACKS*/ +#else /*!ENABLE_SELINUX_HACKS*/ + (void)fd; +#endif /*!ENABLE_SELINUX_HACKS*/ return 0; /* No. */ } @@ -217,7 +223,9 @@ is_secured_filename (const char *fname) if (sf->ino == buf.st_ino && sf->dev == buf.st_dev) return 1; /* Yes. */ } -#endif /*ENABLE_SELINUX_HACKS*/ +#else /*!ENABLE_SELINUX_HACKS*/ + (void)fname; +#endif /*!ENABLE_SELINUX_HACKS*/ return 0; /* No. */ } |