Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix compile error caused by bool identifier #43

Merged
merged 1 commit into from
Sep 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions libguile-ssh/session-func.c
Original file line number Diff line number Diff line change
Expand Up @@ -234,12 +234,12 @@ set_int32_opt (ssh_session session, int type, SCM value)
static inline int
set_bool_opt (ssh_session session, int type, SCM value)
{
int32_t bool;
int32_t bool_value;

SCM_ASSERT (scm_is_bool (value), value, SCM_ARG3, "session-set!");

bool = scm_to_bool (value);
return ssh_options_set (session, type, &bool);
bool_value = scm_to_bool (value);
return ssh_options_set (session, type, &bool_value);
}

/* Convert VALUE to a socket file descriptor and pass it to
Expand Down
Loading