Fix compilation error with gfio
authorAnatol Pomozov <anatol.pomozov@gmail.com>
Mon, 23 Sep 2019 21:12:12 +0000 (14:12 -0700)
committerAnatol Pomozov <anatol.pomozov@gmail.com>
Mon, 23 Sep 2019 21:23:11 +0000 (14:23 -0700)
commit5b215853ed4b438b5b2d4ac3e56d5f0d19e145d9
tree3076159f4f2531073d93b0ccb4e2d11253c1f7f1
parent92f75708b530989fdb13b50be6604f44b80d038d
Fix compilation error with gfio

Commit 36833fb04 replaced many usages of strncpy with snprintf.
But there is one place where new arguments were added but the function
name has not been changed. It leads to the following compilation error:

gclient.c:333:2: error: too many arguments to function ‘strncpy’
  333 |  strncpy(message, sizeof(message), "%s", status_message);
      |  ^~~~~~~
In file included from /usr/include/features.h:450,
                 from /usr/include/bits/libc-header-start.h:33,
                 from /usr/include/stdlib.h:25,
                 from gclient.c:1:
/usr/include/bits/string_fortified.h:103:1: note: declared here
  103 | __NTH (strncpy (char *__restrict __dest, const char *__restrict __src,
      | ^~~~~

Signed-off-by: Anatol Pomozov <anatol.pomozov@gmail.com>
gclient.c