summaryrefslogtreecommitdiff
path: root/source3/client/client.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>1997-09-05 21:32:32 +0000
committerJeremy Allison <jra@samba.org>1997-09-05 21:32:32 +0000
commite7e49a6e6a1e7d5b1bc64563f29e7cebd5d8e01f (patch)
treec1b53d117a2c9a13de5a0025cb385ed818f3633c /source3/client/client.c
parent4cbe451107286f0c7cbbae84b5cff0685a611c8d (diff)
downloadsamba-e7e49a6e6a1e7d5b1bc64563f29e7cebd5d8e01f.tar.gz
samba-e7e49a6e6a1e7d5b1bc64563f29e7cebd5d8e01f.tar.bz2
samba-e7e49a6e6a1e7d5b1bc64563f29e7cebd5d8e01f.zip
client.c: Made sure myhostname was initialised before substitutions.
status.c: Made sure myhostname was initialised before substitutions. server.c trans2.c: Moved OS/2 WPS fix. Jeremy (jallison@whistle.com) (This used to be commit 8a12b6a4f0feec712f5c4e02e21198c455b060ae)
Diffstat (limited to 'source3/client/client.c')
-rw-r--r--source3/client/client.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/source3/client/client.c b/source3/client/client.c
index 329956ce94..4718db84ac 100644
--- a/source3/client/client.c
+++ b/source3/client/client.c
@@ -34,6 +34,7 @@ pstring cd_path = "";
pstring service="";
pstring desthost="";
extern pstring myname;
+extern pstring myhostname;
pstring password = "";
pstring username="";
pstring workgroup="";
@@ -4625,6 +4626,11 @@ static void usage(char *pname)
DEBUG(3,("%s client started (version %s)\n",timestring(),VERSION));
+ if(!get_myname(myhostname,NULL))
+ {
+ DEBUG(0,("Failed to get my hostname.\n"));
+ }
+
if (!lp_load(servicesf,True)) {
fprintf(stderr, "Can't load %s - run testparm to debug it\n", servicesf);
}