You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by di...@apache.org on 2004/11/15 17:47:43 UTC

cvs commit: ws-axis/c/src/transport/axis2 Axis2Transport.h

dicka       2004/11/15 08:47:43

  Modified:    c/src/transport/axis2 Axis2Transport.h
  Log:
  Add return NULL; to Axis2Transport::getAttachment
  
  PR: AXISCPP-264
  
  Submitted by: Adrian Dick
  
  Revision  Changes    Path
  1.16      +1 -1      ws-axis/c/src/transport/axis2/Axis2Transport.h
  
  Index: Axis2Transport.h
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/transport/axis2/Axis2Transport.h,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- Axis2Transport.h	15 Nov 2004 10:15:33 -0000	1.15
  +++ Axis2Transport.h	15 Nov 2004 16:47:43 -0000	1.16
  @@ -62,7 +62,7 @@
   	throw (AxisTransportException);
       void setAttachment (const char *pcAttachmentId, const char *pcAttachment) {};
       
  -    const char *getAttachment (const char *pcAttachmentId) {};
  +    const char *getAttachment (const char *pcAttachmentId) { return NULL;};
       
       void setSessionId (const char *pcSessionId);