Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
LSH
lsh
Commits
7956ad29
Commit
7956ad29
authored
Sep 15, 2005
by
Niels Möller
Browse files
* src/channel.c (format_open_failure, format_channel_success)
(format_channel_failure): Made static. Rev: src/channel.c:1.125.2.7
parent
8695b686
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/channel.c
View file @
7956ad29
...
...
@@ -165,7 +165,7 @@ format_open_confirmation(struct ssh_channel *channel,
#undef CONFIRM_ARGS
}
struct
lsh_string
*
static
struct
lsh_string
*
format_open_failure
(
uint32_t
channel
,
uint32_t
reason
,
const
char
*
msg
,
const
char
*
language
)
{
...
...
@@ -173,13 +173,13 @@ format_open_failure(uint32_t channel, uint32_t reason,
channel
,
reason
,
msg
,
language
);
}
struct
lsh_string
*
static
struct
lsh_string
*
format_channel_success
(
uint32_t
channel
)
{
return
ssh_format
(
"%c%i"
,
SSH_MSG_CHANNEL_SUCCESS
,
channel
);
}
struct
lsh_string
*
static
struct
lsh_string
*
format_channel_failure
(
uint32_t
channel
)
{
return
ssh_format
(
"%c%i"
,
SSH_MSG_CHANNEL_FAILURE
,
channel
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment