summaryrefslogtreecommitdiffstats
path: root/source/client/client.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2001-02-16 19:21:18 +0000
committerJeremy Allison <jra@samba.org>2001-02-16 19:21:18 +0000
commitd938ad6963a2dd4eda930d508600ec1902dc2b16 (patch)
treee3edc4c9a9215cae80e029ec92ea2a9a99699d98 /source/client/client.c
parent3ded1e6bd5f79948e437ce5b1799705945f36ad2 (diff)
downloadsamba-d938ad6963a2dd4eda930d508600ec1902dc2b16.tar.gz
samba-d938ad6963a2dd4eda930d508600ec1902dc2b16.tar.xz
samba-d938ad6963a2dd4eda930d508600ec1902dc2b16.zip
Excise snprintf -> slprintf.
srv_samr.c: duplicate gid fix. srv_spoolss_nt.c: Merge of JF's work. uid.c: Fix for returning names when a PDC. Jeremy.
Diffstat (limited to 'source/client/client.c')
-rw-r--r--source/client/client.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/client/client.c b/source/client/client.c
index 4554a96320f..c9733ce213f 100644
--- a/source/client/client.c
+++ b/source/client/client.c
@@ -1837,7 +1837,7 @@ static void process_stdin(void)
temp = (char *)NULL;
}
- snprintf( prompt_str, PROMPTSIZE - 1, "smb: %s> ", cur_dir );
+ slprintf( prompt_str, PROMPTSIZE - 1, "smb: %s> ", cur_dir );
temp = readline( prompt_str ); /* We read the line here */