diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2009-02-02 01:50:56 -0500 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2009-02-02 01:50:56 -0500 |
commit | f71b2b3a35fa25f2be897b75870d3ab81170b857 (patch) | |
tree | 5002f3e550b60b1892afd2ac878878d882782312 /WWW/Library/Implementation/HTAAProt.c | |
parent | 04d0ee253833c9a0f9039f3bbd2b90799e9e8d48 (diff) | |
download | lynx-snapshots-f71b2b3a35fa25f2be897b75870d3ab81170b857.tar.gz |
snapshot of project "lynx", label v2-8-7dev_13
Diffstat (limited to 'WWW/Library/Implementation/HTAAProt.c')
-rw-r--r-- | WWW/Library/Implementation/HTAAProt.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/WWW/Library/Implementation/HTAAProt.c b/WWW/Library/Implementation/HTAAProt.c index 2f0ca7ca..263b4a2c 100644 --- a/WWW/Library/Implementation/HTAAProt.c +++ b/WWW/Library/Implementation/HTAAProt.c @@ -1,5 +1,5 @@ /* - * $LynxId: HTAAProt.c,v 1.29 2009/01/03 02:00:14 tom Exp $ + * $LynxId: HTAAProt.c,v 1.30 2009/02/01 21:19:48 tom Exp $ * * MODULE HTAAProt.c * PROTECTION FILE PARSING MODULE @@ -648,7 +648,7 @@ static void save_uid_info(const char *name, int user) * ON EXIT: * returns the user name, or an empty string if not found. */ -const char *HTAA_UidToName(int uid) +const char *HTAA_UidToName(int uid GCC_UNUSED) { #ifndef NOUSERS struct passwd *pw; @@ -682,7 +682,7 @@ const char *HTAA_UidToName(int uid) * ON EXIT: * returns the user id, or NONESUCH if not found. */ -int HTAA_NameToUid(const char *name) +int HTAA_NameToUid(const char *name GCC_UNUSED) { #ifndef NOUSERS struct passwd *pw; @@ -715,7 +715,7 @@ int HTAA_NameToUid(const char *name) * ON EXIT: * returns the group name, or an empty string if not found. */ -const char *HTAA_GidToName(int gid) +const char *HTAA_GidToName(int gid GCC_UNUSED) { #ifndef NOUSERS struct group *gr; @@ -749,7 +749,7 @@ const char *HTAA_GidToName(int gid) * ON EXIT: * returns the group id, or NONESUCH if not found. */ -int HTAA_NameToGid(const char *name) +int HTAA_NameToGid(const char *name GCC_UNUSED) { #ifndef NOUSERS struct group *gr; |