diff options
author | Jeremy Allison <jra@samba.org> | 2007-11-08 18:50:07 -0800 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2007-11-08 18:50:07 -0800 |
commit | 5f4693d8f8cf435cb2c62787ba95acf2b0b5f7d2 (patch) | |
tree | 60266dd6290b88f233a7905ead866b6bea4839a5 /source3/torture/rpctorture.c | |
parent | 7f97c6b96c5f7589a2d66b82bd6c6de1f0170e5a (diff) | |
download | samba-5f4693d8f8cf435cb2c62787ba95acf2b0b5f7d2.tar.gz samba-5f4693d8f8cf435cb2c62787ba95acf2b0b5f7d2.tar.bz2 samba-5f4693d8f8cf435cb2c62787ba95acf2b0b5f7d2.zip |
Remove more pstring/fstrings.
Jeremy.
(This used to be commit 7a1de5b44e84a7474e78518c6ba33b3fedc42b5f)
Diffstat (limited to 'source3/torture/rpctorture.c')
-rw-r--r-- | source3/torture/rpctorture.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/source3/torture/rpctorture.c b/source3/torture/rpctorture.c index d8fcedd8de..64e7b580f3 100644 --- a/source3/torture/rpctorture.c +++ b/source3/torture/rpctorture.c @@ -228,6 +228,7 @@ enum client_action int nprocs = 1; int numops = 100; pstring logfile; + TALLOC_CTX *frame = talloc_stackframe(); struct client_info cli_info; @@ -292,8 +293,8 @@ enum client_action setup_logging(pname, True); - if (!get_myname(global_myname)) - { + global_myname = get_myname(global_myname); + if (!global_myname) { fprintf(stderr, "Failed to get my hostname.\n"); } |