Skip to content

Commit

Permalink
fixed compilation error for non-gsasl environment
Browse files Browse the repository at this point in the history
  • Loading branch information
mbhangui committed Dec 6, 2023
1 parent c67660f commit d999d9a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions indimail-x/vpasswd.c
Original file line number Diff line number Diff line change
Expand Up @@ -220,11 +220,11 @@ main(int argc, char **argv)
if (get_options(argc, argv, &email, &clear_text, &encrypt_flag, &docram, &scram, &iter, &b64salt))
return (1);
#else
if (get_options(argc, argv, &email, &clear_text, &encrypt_flag, docram, 0, 0, 0))
if (get_options(argc, argv, &email, &clear_text, &encrypt_flag, &docram, 0, 0, 0))
return (1);
#endif
#else
if (get_options(argc, argv, &email, &clear_text, &encrypt_flag, docram, 0, 0, 0))
if (get_options(argc, argv, &email, &clear_text, &encrypt_flag, &docram, 0, 0, 0))
return (1);
#endif
parse_email(email, &user, &domain);
Expand Down

0 comments on commit d999d9a

Please sign in to comment.