From: Michael Adam Date: Wed, 7 Nov 2007 21:28:26 +0000 (+0100) Subject: Try to fix the build on irix. X-Git-Tag: samba-3.2.0pre2~582^2~7 X-Git-Url: http://git.samba.org/?a=commitdiff_plain;h=e398a8d7b60127001d309c2fd0b1f13337f9b46d;p=samba.git Try to fix the build on irix. There were two callers of set_smb_read_error() in irix_oplocks.c not converted to the new prototype. Michael --- diff --git a/source/smbd/oplock_irix.c b/source/smbd/oplock_irix.c index b8d49f03a15..a4ea63bc0aa 100644 --- a/source/smbd/oplock_irix.c +++ b/source/smbd/oplock_irix.c @@ -121,7 +121,7 @@ static files_struct *irix_oplock_receive_message(fd_set *fds) DEBUG(0,("irix_oplock_receive_message: read of kernel " "notification failed. Error was %s.\n", strerror(errno) )); - set_smb_read_error(SMB_READ_ERROR); + set_smb_read_error(get_srv_read_error(), SMB_READ_ERROR); return NULL; } @@ -141,7 +141,7 @@ static files_struct *irix_oplock_receive_message(fd_set *fds) */ return NULL; } - set_smb_read_error(SMB_READ_ERROR); + set_smb_read_error(get_srv_read_error(), SMB_READ_ERROR); return NULL; }