diff options
author | Jes Sorensen <Jes.Sorensen@redhat.com> | 2010-08-31 09:30:33 +0200 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2010-09-04 09:45:50 +0000 |
commit | 0a4eb864e354d650ac9ff6aea62873a6cd07e9ca (patch) | |
tree | c555754b01b053e521dd1a6d1f37ae8dd74cdbb3 /nbd.c | |
parent | cb93bbdd7db92e50ff5e60a346b23df68acae46b (diff) |
Remove unused argument for nbd_client()
Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'nbd.c')
-rw-r--r-- | nbd.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -393,7 +393,7 @@ int nbd_disconnect(int fd) return 0; } -int nbd_client(int fd, int csock) +int nbd_client(int fd) { int ret; int serrno; @@ -427,7 +427,7 @@ int nbd_disconnect(int fd) return -1; } -int nbd_client(int fd, int csock) +int nbd_client(int fd) { errno = ENOTSUP; return -1; |