The branch, v3-2-test has been updated via e398a8d7b60127001d309c2fd0b1f13337f9b46d (commit) from a0d0a06a9e39ea4fd07e9381f4b3397f403ab79d (commit)
http://gitweb.samba.org/?p=samba.git;a=shortlog;h=v3-2-test - Log ----------------------------------------------------------------- commit e398a8d7b60127001d309c2fd0b1f13337f9b46d Author: Michael Adam <[EMAIL PROTECTED]> Date: Wed Nov 7 22:28:26 2007 +0100 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 ----------------------------------------------------------------------- Summary of changes: source/smbd/oplock_irix.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) Changeset truncated at 500 lines: diff --git a/source/smbd/oplock_irix.c b/source/smbd/oplock_irix.c index b8d49f0..a4ea63b 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; } -- Samba Shared Repository