From def1e6d395b3b689abb03b90ac8f53d663bbf2fe Mon Sep 17 00:00:00 2001 From: Danny Auble <da@llnl.gov> Date: Tue, 1 Apr 2008 23:13:41 +0000 Subject: [PATCH] fix for trying to make a parent of one's self --- .../accounting_storage/mysql/accounting_storage_mysql.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/plugins/accounting_storage/mysql/accounting_storage_mysql.c b/src/plugins/accounting_storage/mysql/accounting_storage_mysql.c index 445e8c6eabf..5b6cc5dfde6 100644 --- a/src/plugins/accounting_storage/mysql/accounting_storage_mysql.c +++ b/src/plugins/accounting_storage/mysql/accounting_storage_mysql.c @@ -2421,7 +2421,13 @@ update assoc_table set deleted = deleted - 2 WHERE deleted > 1; update assoc_table set parent_acct='new parent' where id = 'account id'; */ - + if(!strcasecmp(row[MASSOC_ACCT], + assoc->parent_acct)) { + error("You can't make an account be a " + "child of it's self"); + xfree(object); + continue; + } /* first we need to see if we are * going to make a child of this * account the new parent. If so we -- GitLab