diff options
author | Andrew Tridgell <tridge@samba.org> | 1998-11-12 23:59:59 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 1998-11-12 23:59:59 +0000 |
commit | e5d9a4f4e3c8c278f36ae6e9900012b0840518d3 (patch) | |
tree | a848be2be5ffa5d88b81745d1032aca49df68caa /source3/web | |
parent | dfac41840a546801c759d385895a03e223aa5bc7 (diff) | |
download | samba-e5d9a4f4e3c8c278f36ae6e9900012b0840518d3.tar.gz samba-e5d9a4f4e3c8c278f36ae6e9900012b0840518d3.tar.xz samba-e5d9a4f4e3c8c278f36ae6e9900012b0840518d3.zip |
%\ is an interesting printf argument, but I prefer %s
(This used to be commit b93f686655e871d7bfec9c7601cf3c175008041a)
Diffstat (limited to 'source3/web')
-rw-r--r-- | source3/web/swat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/web/swat.c b/source3/web/swat.c index 852d7c09333..30150815fe6 100644 --- a/source3/web/swat.c +++ b/source3/web/swat.c @@ -611,7 +611,7 @@ static BOOL change_password(const char *remote_machine, char *user_name, msg_str, sizeof(msg_str)); if(*msg_str) - printf("%\n<p>", msg_str); + printf("%s\n<p>", msg_str); if(*err_str) printf("%s\n<p>", err_str); |