nbd-server: fix append_serve() to accept a const server pointer
authorTuomas Jorma Juhani Räsänen <tuomasjjrasanen@tjjr.fi>
Tue, 1 Jan 2013 19:21:33 +0000 (21:21 +0200)
committerWouter Verhelst <w@uter.be>
Wed, 2 Jan 2013 07:49:17 +0000 (08:49 +0100)
Now that dup_server() accepts const pointer, append_serve() can also
accept const pointer. There should not be any need to modify the server
when appending it to the array.

Signed-off-by: Tuomas Jorma Juhani Räsänen <tuomasjjrasanen@tjjr.fi>
nbd-server.c

index de1b20e8dbfa88c13bb28245008cba4a019b0311..019f578f242df40900eb8f266f068ce7fcb4fb3b 100644 (file)
@@ -713,7 +713,7 @@ SERVER* dup_serve(const SERVER *const s) {
  * @param a server array
  * @return 0 success, -1 error
  */
-int append_serve(SERVER *s, GArray *a) {
+int append_serve(const SERVER *const s, GArray *const a) {
        SERVER *ns = NULL;
        struct addrinfo hints;
        struct addrinfo *ai = NULL;