diff options
author | Volker Lendecke <vl@samba.org> | 2007-12-08 11:20:53 +0100 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2007-12-08 09:39:20 -0800 |
commit | 0cdcd255a5ab2d776d1f4d010199ca9edd06c5e9 (patch) | |
tree | be7021667cead68078c1c4757180c6edb3a13580 /source3/auth/pampass.c | |
parent | 6e995e4f8c5884795ad5c524c670c5073f8af359 (diff) | |
download | samba-0cdcd255a5ab2d776d1f4d010199ca9edd06c5e9.tar.gz samba-0cdcd255a5ab2d776d1f4d010199ca9edd06c5e9.tar.xz samba-0cdcd255a5ab2d776d1f4d010199ca9edd06c5e9.zip |
Fix two incompatible pointer warnings
Jeremy, please check
(This used to be commit 60500fac30911500eade7c2a9aa13569dcab0911)
Diffstat (limited to 'source3/auth/pampass.c')
-rw-r--r-- | source3/auth/pampass.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/auth/pampass.c b/source3/auth/pampass.c index 554df3c157c..58921bdf154 100644 --- a/source3/auth/pampass.c +++ b/source3/auth/pampass.c @@ -238,7 +238,7 @@ static struct chat_struct *make_pw_chat(const char *p) strlower_m(t->prompt); trim_char(t->prompt, ' ', ' '); - if (!next_token_talloc(frame, &p, reply, NULL)) { + if (!next_token_talloc(frame, &p, &reply, NULL)) { break; } |