summaryrefslogtreecommitdiffstats
path: root/source/rpcclient/rpcclient.c
diff options
context:
space:
mode:
authorLuke Leighton <lkcl@samba.org>1999-12-02 01:16:05 +0000
committerLuke Leighton <lkcl@samba.org>1999-12-02 01:16:05 +0000
commit338d08f69b0eeefa0f3f2c0217ef17ea3e815e1f (patch)
tree5b7b0a391f94979cc3c72fcb394a36722d58e79a /source/rpcclient/rpcclient.c
parent586db87ea31ebb1b090527f61a4989461f626b1a (diff)
downloadsamba-338d08f69b0eeefa0f3f2c0217ef17ea3e815e1f.tar.gz
samba-338d08f69b0eeefa0f3f2c0217ef17ea3e815e1f.tar.xz
samba-338d08f69b0eeefa0f3f2c0217ef17ea3e815e1f.zip
clearing up connection-related stuff. password credentials were messing
up. added a complicated prompt which i don't like, but it tells you domain\user@hostname$
Diffstat (limited to 'source/rpcclient/rpcclient.c')
-rw-r--r--source/rpcclient/rpcclient.c31
1 files changed, 23 insertions, 8 deletions
diff --git a/source/rpcclient/rpcclient.c b/source/rpcclient/rpcclient.c
index dfbd3fae7a6..2339cc892b9 100644
--- a/source/rpcclient/rpcclient.c
+++ b/source/rpcclient/rpcclient.c
@@ -755,14 +755,32 @@ static BOOL process( struct client_info *info, char *cmd_str)
}
else while (!feof(stdin))
{
-#ifdef HAVE_LIBREADLINE
- pstring promptline;
-#endif
+ pstring pline;
+ BOOL at_sym = False;
+ pline[0] = 0;
+ if (usr.domain[0] != 0)
+ {
+ safe_strcat(pline, usr.domain, sizeof(pline)-1);
+ safe_strcat(pline, "\\", sizeof(pline)-1);
+ at_sym = True;
+ }
+ if (usr.user_name[0] != 0)
+ {
+ safe_strcat(pline, usr.user_name, sizeof(pline)-1);
+ at_sym = True;
+ }
+ if (at_sym)
+ {
+ safe_strcat(pline, "@", sizeof(pline)-1);
+ }
+
+ safe_strcat(pline, cli_info.dest_host, sizeof(pline)-1);
+ safe_strcat(pline, "$ ", sizeof(pline)-1);
#ifndef HAVE_LIBREADLINE
/* display a prompt */
- fprintf(out_hnd, "%s$ ", CNV_LANG(cli_info.dest_host));
+ fprintf(out_hnd, "%s", CNV_LANG(promptline));
fflush(out_hnd);
cli_net_wait_keyboard();
@@ -775,10 +793,7 @@ static BOOL process( struct client_info *info, char *cmd_str)
#else /* HAVE_LIBREADLINE */
- slprintf(promptline, sizeof(promptline) - 1, "%s$ ",
- CNV_LANG(cli_info.dest_host));
-
- if (!readline(promptline))
+ if (!readline(pline))
break;
/* Copy read line to samba buffer */