striker     01/07/03 08:00:45

  Modified:    memory/unix apr_sms.c
  Log:
  Noticed too late that I wasn't setting the return value in
  apr_sms_thread_register
  
  Revision  Changes    Path
  1.38      +1 -1      apr/memory/unix/apr_sms.c
  
  Index: apr_sms.c
  ===================================================================
  RCS file: /home/cvs/apr/memory/unix/apr_sms.c,v
  retrieving revision 1.37
  retrieving revision 1.38
  diff -u -r1.37 -r1.38
  --- apr_sms.c 2001/07/03 13:58:39     1.37
  +++ apr_sms.c 2001/07/03 15:00:36     1.38
  @@ -866,7 +866,7 @@
            */
           rv = APR_ENOTIMPL;
           if (sms->thread_register_fn)
  -            sms->thread_register_fn(sms, thread);
  +            rv = sms->thread_register_fn(sms, thread);
   
           apr_lock_release(sms->sms_lock);
   
  
  
  

Reply via email to