ofproto/pktbuf.c: Fix a typo in the comment
authorAlex Wang <alexw@nicira.com>
Wed, 29 May 2013 20:57:22 +0000 (13:57 -0700)
committerBen Pfaff <blp@nicira.com>
Tue, 4 Jun 2013 21:33:26 +0000 (14:33 -0700)
This patch fixes a typo in the comment of the pktbuf_retrieve() function.

Signed-off-by: Alex Wang <alexw@nicira.com>
Signed-off-by: Ben Pfaff <blp@nicira.com>
ofproto/pktbuf.c

index 902b19d..2ec1f0d 100644 (file)
@@ -158,7 +158,7 @@ pktbuf_get_null(void)
  * 0 if successful, otherwise an OpenFlow error code.
  *
  * On success, ordinarily stores the buffered packet in '*bufferp' and the
- * datapath port number on which the packet was received in '*in_port'.  The
+ * OpenFlow port number on which the packet was received in '*in_port'.  The
  * caller becomes responsible for freeing the buffer.  However, if 'id'
  * identifies a "null" packet buffer (created with pktbuf_get_null()), stores
  * NULL in '*bufferp' and UINT16_max in '*in_port'.