Skip to content
Snippets Groups Projects
Commit 0f606190 authored by Brian Carrier's avatar Brian Carrier
Browse files

Fixed some doc warnings

parent 60753eb2
No related branches found
No related tags found
No related merge requests found
......@@ -235,7 +235,6 @@ public static String getVersion(){
/**
* Enable verbose logging and redirect stderr to the given log file.
* @return the version string
*/
public static void startVerboseLogging(String logPath) {
startVerboseLoggingNat(logPath);
......
......@@ -13,7 +13,9 @@ my $RMAN = "/rman-3.2/rman";
# rman and www are back different levels depending on
# which branch we are on.
if (-d "../../../rman-3.2") {
if (-d "../../rman-3.2") {
$BACK = "../../";
} elsif (-d "../../../rman-3.2") {
$BACK = "../../../";
} elsif (-d "../../../../rman-3.2") {
$BACK = "../../../../";
......
......@@ -119,7 +119,10 @@ TskCaseDb::initAddImage()
* and block map population). Use TskCaseDb::initAddImage() to set
* these values.
*
* @param images Paths to the image splits to open.
* @param numImg Number of images to add
* @param imagePaths Paths to the image splits to open.
* @param imgType TYpe of image format
* @param sSize Sector size of image
* @returns 1 on error and 0 on success
*/
uint8_t
......
......@@ -465,7 +465,14 @@ int
/**
* @param md5 Binary value of MD5 (i.e. 16 bytes) or NULL on error
* Add a file system file to the database
* @param fs_file File structure to add
* @param fs_attr Specific attribute to add
* @param path Path of the file
* @param md5 Binary value of MD5 (i.e. 16 bytes) or NULL
* @param known Status regarding if it was found in hash databse or not
* @param fsObjId File system object of its file system
* @param objId ID that was assigned to it from the objects table
* @returns 1 on error and 0 on success
*/
int
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment