Changelog: - the handler for the server message get_next_hook was returning the module name of the current hook, instead of the next one Alberto Index: server/hook.c =================================================================== RCS file: /home/wine/wine/server/hook.c,v retrieving revision 1.3 diff -u -r1.3 hook.c --- server/hook.c 20 Nov 2002 19:54:32 -0000 1.3 +++ server/hook.c 17 Dec 2002 16:06:26 -0000 @@ -366,6 +366,6 @@ reply->proc = next->proc; reply->prev_unicode = hook->unicode; reply->next_unicode = next->unicode; - if (hook->module) set_reply_data( hook->module, hook->module_size ); + if (next->module) set_reply_data( next->module, next->module_size ); } }