/[LeafOK_CVS]/innwebd/innd.cpp
ViewVC logotype

Diff of /innwebd/innd.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

Revision 1.12 by sysadm, Sat Feb 26 16:10:26 2005 UTC Revision 1.13 by sysadm, Fri Apr 11 17:14:49 2008 UTC
# Line 1  Line 1 
1  /*******************************************************/  /*******************************************************/
2  /*                                                     */  /*                                                     */
3  /*  LeafOK Innbbsd                                     */  /*  LeafOK Innbbsd                                     */
 /*  Copyright (C) LeafOK.com, 2003-2005                */  
4  /*                                                     */  /*                                                     */
5  /*  Programmed by Leaf                                 */  /*  Copyright (C) LeafOK.com, 2003-2008                */
 /*  E-mail:leaflet@leafok.com  QQ:6049044              */  
6  /*                                                     */  /*                                                     */
7  /*  http://bbs.leafok.com                              */  /*  http://www.leafok.com                              */
 /*  http://bbs.leafok.net                              */  
 /*  http://bbs.fenglin.info                            */  
8  /*                                                     */  /*                                                     */
9  /*******************************************************/  /*******************************************************/
10    
# Line 124  int innd::Accept(void) Line 120  int innd::Accept(void)
120          }          }
121          catch(CException* e)          catch(CException* e)
122          {          {
123                  syslog << logfile::log_head << "Error in accept()" << endl;                  char strErrMsg[1024];
124                    e->GetErrorMessage(strErrMsg,1024);
125                    syslog << logfile::log_head << "Error in accept() [" << strErrMsg << "]" << endl;
126                  e->Delete();                  e->Delete();
127                  return -1;                  return -1;
128          }          }
# Line 175  int innd::cmd_list(void) Line 173  int innd::cmd_list(void)
173          }          }
174          catch(CException* e)          catch(CException* e)
175          {          {
176                  syslog << logfile::log_head << "Error in cmd_list()" << endl;                  char strErrMsg[1024];
177                    e->GetErrorMessage(strErrMsg,1024);
178                    syslog << logfile::log_head << "Error in cmd_list() [" << strErrMsg << "]" << endl;
179                  e->Delete();                  e->Delete();
180                  return -1;                  return -1;
181          }          }


Legend:
Removed lines/characters  
Changed lines/characters
  Added lines/characters

webmaster@leafok.com
ViewVC Help
Powered by ViewVC 1.3.0-beta1