Changes committed to git://oss.sgi.com/pcp/pcp.git dev
qa/src/pmdacache.c | 2 +-
qa/src/unpack.c | 2 +-
src/libpcp/src/secureconnect.c | 8 +++++---
3 files changed, 7 insertions(+), 5 deletions(-)
commit eded6aeb5213f5678bd8b33607b0678b68e659c8
Author: MiloÅ PrchlÃk <mprchlik@xxxxxxxxxx>
Date: Mon Jul 15 11:16:42 2013 +1000
Fix test program hangs in getopt on some architectures
On ppc64 and s390x the test programs unpack.c and pmdacache.c hang in
the call to getopt(3). Since getopt is declared with int as its return
value and when there are no more arguments on s390x and ppc64, c = 255
instead of expected c = EOF = -1, therefore while loop never quits.
When c is declared as int, testcases 341 and 404 pass as on x86_64.
commit 4b03a2e2d659193b0f8088aea76e082e9442214b
Author: Nathan Scott <nathans@xxxxxxxxxx>
Date: Mon Jul 15 11:06:39 2013 +1000
Add an interactive prompt for password in authentication code.
Gets us through the step of handling the case where this was not
initially provided. This will need further extension/thought to
handle non-command-line tools though, still pondering how exactly
to tackle that.
|