diff options
author | Matthias Dieter Wallnöfer <mwallnoefer@yahoo.de> | 2009-09-29 11:43:17 +0200 |
---|---|---|
committer | Matthias Dieter Wallnöfer <mwallnoefer@yahoo.de> | 2009-10-03 13:20:52 +0200 |
commit | 02b289f65bf567acb233ad01e3512a9e29b6c757 (patch) | |
tree | 8b43ee2bd1fa1811ec999555a04296ff5e2d3156 /source4/heimdal/kuser | |
parent | be938ab44b6095818501b23ca8422c731e14015a (diff) | |
download | samba-02b289f65bf567acb233ad01e3512a9e29b6c757.tar.gz samba-02b289f65bf567acb233ad01e3512a9e29b6c757.tar.bz2 samba-02b289f65bf567acb233ad01e3512a9e29b6c757.zip |
heimdal - fix various warnings
- Shadowed variables
- "const" related warnings
- Parameter names which shadow function declarations
- Non-void functions which have no return value
(patch also ported upstream)
Diffstat (limited to 'source4/heimdal/kuser')
-rw-r--r-- | source4/heimdal/kuser/kinit.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/heimdal/kuser/kinit.c b/source4/heimdal/kuser/kinit.c index 4208fa83e0..dd122b5ce7 100644 --- a/source4/heimdal/kuser/kinit.c +++ b/source4/heimdal/kuser/kinit.c @@ -488,14 +488,14 @@ get_new_tickets(krb5_context context, addrs_flag ? FALSE : TRUE); if (renew_life == NULL && renewable_flag) - renewstr = "1 month"; + asprintf(&renewstr, "1 month"); if (renew_life) - renewstr = renew_life; + asprintf(&renewstr, "%s", renew_life); if (renewstr) { renew = parse_time (renewstr, "s"); if (renew < 0) errx (1, "unparsable time: %s", renewstr); - + free(renewstr); krb5_get_init_creds_opt_set_renew_life (opt, renew); } |