You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-commits@hadoop.apache.org by cd...@apache.org on 2008/05/05 20:36:30 UTC

svn commit: r653552 - in /hadoop/core/trunk: CHANGES.txt src/c++/libhdfs/hdfs.h

Author: cdouglas
Date: Mon May  5 11:36:29 2008
New Revision: 653552

URL: http://svn.apache.org/viewvc?rev=653552&view=rev
Log:
HADOOP-2294. Fix documentation in libhdfs to refer to the correct free
function. Contributed by Craig Macdonald.


Modified:
    hadoop/core/trunk/CHANGES.txt
    hadoop/core/trunk/src/c++/libhdfs/hdfs.h

Modified: hadoop/core/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/hadoop/core/trunk/CHANGES.txt?rev=653552&r1=653551&r2=653552&view=diff
==============================================================================
--- hadoop/core/trunk/CHANGES.txt (original)
+++ hadoop/core/trunk/CHANGES.txt Mon May  5 11:36:29 2008
@@ -150,6 +150,9 @@
     HADOOP-3119. Update javadoc for Text::getBytes to better describe its
     behavior. (Tim Nelson via cdouglas)
 
+    HADOOP-2294. Fix documentation in libhdfs to refer to the correct free
+    function. (Craig Macdonald via cdouglas)
+
 Release 0.17.0 - Unreleased
 
   INCOMPATIBLE CHANGES

Modified: hadoop/core/trunk/src/c++/libhdfs/hdfs.h
URL: http://svn.apache.org/viewvc/hadoop/core/trunk/src/c%2B%2B/libhdfs/hdfs.h?rev=653552&r1=653551&r2=653552&view=diff
==============================================================================
--- hadoop/core/trunk/src/c++/libhdfs/hdfs.h (original)
+++ hadoop/core/trunk/src/c++/libhdfs/hdfs.h Mon May  5 11:36:29 2008
@@ -323,7 +323,7 @@
 
     /** 
      * hdfsListDirectory - Get list of files/directories for a given
-     * directory-path. freehdfsFileInfo should be called to deallocate memory. 
+     * directory-path. hdfsFreeFileInfo should be called to deallocate memory. 
      * @param fs The configured filesystem handle.
      * @param path The path of the directory. 
      * @param numEntries Set to the number of files/directories in path.
@@ -336,7 +336,7 @@
 
     /** 
      * hdfsGetPathInfo - Get information about a path as a (dynamically
-     * allocated) single hdfsFileInfo struct. freehdfsFileInfo should be
+     * allocated) single hdfsFileInfo struct. hdfsFreeFileInfo should be
      * called when the pointer is no longer needed.
      * @param fs The configured filesystem handle.
      * @param path The path of the file.