Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Mike Perry
Tor
Commits
0e5b6a84
Commit
0e5b6a84
authored
Oct 06, 2005
by
Roger Dingledine
Browse files
without braces, what will hold up the code?
svn:r5209
parent
ba24193a
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/or/config.c
View file @
0e5b6a84
...
...
@@ -36,7 +36,7 @@ typedef enum config_type_t {
CONFIG_TYPE_OBSOLETE
,
/**< Obsolete (ignored) option. */
}
config_type_t
;
/** An abbreviation for a configuration option allowed on the command line */
/** An abbreviation for a configuration option allowed on the command line
.
*/
typedef
struct
config_abbrev_t
{
const
char
*
abbreviated
;
const
char
*
full
;
...
...
src/or/connection_or.c
View file @
0e5b6a84
...
...
@@ -379,7 +379,7 @@ connection_tls_start_handshake(connection_t *conn, int receiving)
{
conn
->
state
=
OR_CONN_STATE_HANDSHAKING
;
conn
->
tls
=
tor_tls_new
(
conn
->
s
,
receiving
,
0
);
if
(
!
conn
->
tls
)
if
(
!
conn
->
tls
)
{
log_fn
(
LOG_WARN
,
"tor_tls_new failed. Closing."
);
return
-
1
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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