Переглянути джерело

without braces, what will hold up the code?

svn:r5209
Roger Dingledine 20 роки тому
батько
коміт
0e5b6a84eb
2 змінених файлів з 2 додано та 2 видалено
  1. 1 1
      src/or/config.c
  2. 1 1
      src/or/connection_or.c

+ 1 - 1
src/or/config.c

@@ -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;

+ 1 - 1
src/or/connection_or.c

@@ -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;
   }