server/admin.c: Note that it's safe to call `a_create' before `a_init'.
authorMark Wooding <mdw@distorted.org.uk>
Sat, 12 May 2018 18:55:26 +0000 (19:55 +0100)
committerMark Wooding <mdw@distorted.org.uk>
Fri, 25 Jan 2019 12:10:31 +0000 (12:10 +0000)
A good thing too, because we do exactly this.

server/admin.c
server/tripe.h

index 85e8c23..e530620 100644 (file)
@@ -2404,7 +2404,8 @@ static void a_line(char *p, size_t len, void *vp)
  *
  * Returns:    ---
  *
- * Use:                Creates a new admin connection.
+ * Use:                Creates a new admin connection.  It's safe to call this
+ *             before @a_init@.
  */
 
 void a_create(int fd_in, int fd_out, unsigned f)
index 1effb95..9549ec3 100644 (file)
@@ -1297,7 +1297,8 @@ extern void EXECL_LIKE(0) a_notify(const char */*fmt*/, ...);
  *
  * Returns:    ---
  *
- * Use:                Creates a new admin connection.
+ * Use:                Creates a new admin connection.  It's safe to call this
+ *             before @a_init@.
  */
 
 extern void a_create(int /*fd_in*/, int /*fd_out*/, unsigned /*f*/);