Skip to content

Commit

Permalink
Release version 0.2
Browse files Browse the repository at this point in the history
 * And fix some build warnings
  • Loading branch information
stefwalter committed Sep 4, 2012
1 parent 3779c40 commit 7e0f823
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
9 changes: 9 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,2 +1,11 @@
0.2
- Return the correct exit codes
- Implement the --show-details join option
- Add --one-time-password to the 'preset' command
- Add specific ways to read passwords
- Specify domain in --domain parameter
- Clean up option parsing
- Fix bugs

0.1
- Initial unstable release
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
AC_PREREQ(2.61)

AC_INIT([adcli],
[0.1],
[0.2],
[https://bugs.freedesktop.org/enter_bug.cgi?product=realmd],
[adcli],
[http://example.com/website.html])
Expand Down
2 changes: 1 addition & 1 deletion library/adconn.c
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,7 @@ _adcli_kinit_computer_creds (adcli_conn *conn,
password = new_password;
}

code = krb5_get_init_creds_password (k5, creds, principal, password, NULL, 0,
code = krb5_get_init_creds_password (k5, creds, principal, (char *)password, NULL, 0,
0, (char *)in_tkt_service, opt);

if (code == 0 && new_password) {
Expand Down
2 changes: 1 addition & 1 deletion tools/adcli.c
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ build_short_options (const struct option *longopts)
char *options;
char *p;
char opt;
int count;
int count = 0;
int i;

/* Number of characters */
Expand Down

0 comments on commit 7e0f823

Please sign in to comment.