summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>2000-01-10 00:03:47 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>2000-01-10 00:03:47 +0000
commit71cb23b28401d12ba1877f56ddf70624d563f82c (patch)
treea3bff89ae109574a2c6028ed9dbd1a6674884166
parentff0e17f13611262f89f5a24e956b787c63e17992 (diff)
downloadATCD-71cb23b28401d12ba1877f56ddf70624d563f82c.tar.gz
ChangeLogTag:Sun Jan 9 00:25:58 2000 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
-rw-r--r--ChangeLog4
-rw-r--r--ChangeLogs/ChangeLog-02a4
-rw-r--r--ChangeLogs/ChangeLog-03a4
-rw-r--r--ace/Process.i1
4 files changed, 13 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 2b2a61d8466..bc459f9b820 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
Sun Jan 9 00:25:58 2000 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
+ * ace/Process.i (setreugid): Added an ACE_UNUSED_ARG for the
+ ACE_LACKS_PWD_FUNCTIONS case. Thanks to David for catching
+ this!
+
* ace/Process.i (setreugid): Guard against the case where
ACE_LACKS_PWD_FUNCTIONS. Thanks to David Levine for
reporting this problem with VxWorks.
diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a
index 2b2a61d8466..bc459f9b820 100644
--- a/ChangeLogs/ChangeLog-02a
+++ b/ChangeLogs/ChangeLog-02a
@@ -1,5 +1,9 @@
Sun Jan 9 00:25:58 2000 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
+ * ace/Process.i (setreugid): Added an ACE_UNUSED_ARG for the
+ ACE_LACKS_PWD_FUNCTIONS case. Thanks to David for catching
+ this!
+
* ace/Process.i (setreugid): Guard against the case where
ACE_LACKS_PWD_FUNCTIONS. Thanks to David Levine for
reporting this problem with VxWorks.
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index 2b2a61d8466..bc459f9b820 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,5 +1,9 @@
Sun Jan 9 00:25:58 2000 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
+ * ace/Process.i (setreugid): Added an ACE_UNUSED_ARG for the
+ ACE_LACKS_PWD_FUNCTIONS case. Thanks to David for catching
+ this!
+
* ace/Process.i (setreugid): Guard against the case where
ACE_LACKS_PWD_FUNCTIONS. Thanks to David Levine for
reporting this problem with VxWorks.
diff --git a/ace/Process.i b/ace/Process.i
index 2ad6b78a4ee..d2d78bc721c 100644
--- a/ace/Process.i
+++ b/ace/Process.i
@@ -222,6 +222,7 @@ ACE_Process_Options::setreugid (const char* user)
else
return -1;
#else
+ ACE_UNUSED_ARG (user);
ACE_NOTSUP_RETURN (-1);
#endif /* ACE_LACKS_PWD_FUNCTIONS */
}