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 om...@apache.org on 2011/03/04 05:44:39 UTC

svn commit: r1077688 - /hadoop/common/branches/branch-0.20-security-patches/src/c++/task-controller/impl/main.c

Author: omalley
Date: Fri Mar  4 04:44:39 2011
New Revision: 1077688

URL: http://svn.apache.org/viewvc?rev=1077688&view=rev
Log:
commit 53479592b9a0ed77aa62cbc13fc8bb4ce44530ff
Author: Owen O'Malley <om...@apache.org>
Date:   Fri Sep 17 14:34:33 2010 -0700

    one more fix for the delete log

Modified:
    hadoop/common/branches/branch-0.20-security-patches/src/c++/task-controller/impl/main.c

Modified: hadoop/common/branches/branch-0.20-security-patches/src/c++/task-controller/impl/main.c
URL: http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.20-security-patches/src/c%2B%2B/task-controller/impl/main.c?rev=1077688&r1=1077687&r2=1077688&view=diff
==============================================================================
--- hadoop/common/branches/branch-0.20-security-patches/src/c++/task-controller/impl/main.c (original)
+++ hadoop/common/branches/branch-0.20-security-patches/src/c++/task-controller/impl/main.c Fri Mar  4 04:44:39 2011
@@ -181,7 +181,7 @@ int main(int argc, char **argv) {
     break;
   case DELETE_LOG_AS_USER:
     dir_to_be_deleted = argv[optind++];
-    exit_code= delete_log_directory(user_detail->pw_name, dir_to_be_deleted);
+    exit_code= delete_log_directory(dir_to_be_deleted);
     break;
   default:
     exit_code = INVALID_COMMAND_PROVIDED;