diff options
author | Jeremy Allison <jra@samba.org> | 2006-04-29 23:41:09 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:16:36 -0500 |
commit | c176ec262928a61c688870f9537c5e17e7b2aed4 (patch) | |
tree | 66b08314c3621b9002b68c67bdde105a4374ac24 /source3/utils | |
parent | 1f3fe6a50451c6e0b223fa70ddceb7543f060d89 (diff) | |
download | samba-c176ec262928a61c688870f9537c5e17e7b2aed4.tar.gz samba-c176ec262928a61c688870f9537c5e17e7b2aed4.tar.bz2 samba-c176ec262928a61c688870f9537c5e17e7b2aed4.zip |
r15336: Unknown escape sequence: '\305' - should have been '\n'.
(How did that get in there ?).
Jeremy
(This used to be commit 780b71d300da71acc8b4f0fe10c1ae78c71e23c4)
Diffstat (limited to 'source3/utils')
-rw-r--r-- | source3/utils/net_ads.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/net_ads.c b/source3/utils/net_ads.c index c7e9529c97..e02da46b9c 100644 --- a/source3/utils/net_ads.c +++ b/source3/utils/net_ads.c @@ -1430,7 +1430,7 @@ static int net_ads_sid(int argc, const char **argv) attrs = (argv + 1); if (!string_to_sid(&sid, sid_string)) { - d_fprintf(stderr, "could not convert sid\ņ"); + d_fprintf(stderr, "could not convert sid\n"); ads_destroy(&ads); return -1; } |