diff options
author | Andy Grover <agrover@redhat.com> | 2012-07-13 02:34:54 +0200 |
---|---|---|
committer | Nicholas Bellinger <nab@linux-iscsi.org> | 2012-07-17 02:35:22 +0200 |
commit | ee1b1b9c3db29643eb82a6b52694555c91af2f97 (patch) | |
tree | 3329b526e53a31de1651437fbac6d77115e2a748 /drivers/target/iscsi/iscsi_target_tpg.c | |
parent | target: replace the processing thread with a TMR work queue (diff) | |
download | linux-ee1b1b9c3db29643eb82a6b52694555c91af2f97.tar.xz linux-ee1b1b9c3db29643eb82a6b52694555c91af2f97.zip |
target: Remove unneeded double parentheses
Signed-off-by: Andy Grover <agrover@redhat.com>
Signed-off-by: Nicholas Bellinger <nab@linux-iscsi.org>
Diffstat (limited to 'drivers/target/iscsi/iscsi_target_tpg.c')
-rw-r--r-- | drivers/target/iscsi/iscsi_target_tpg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/target/iscsi/iscsi_target_tpg.c b/drivers/target/iscsi/iscsi_target_tpg.c index 879d8d0fa3fe..142989598aea 100644 --- a/drivers/target/iscsi/iscsi_target_tpg.c +++ b/drivers/target/iscsi/iscsi_target_tpg.c @@ -593,7 +593,7 @@ int iscsit_ta_authentication(struct iscsi_portal_group *tpg, u32 authentication) } else { snprintf(buf1, sizeof(buf1), "%s", param->value); none = strstr(buf1, NONE); - if ((none)) + if (none) goto out; strncat(buf1, ",", strlen(",")); strncat(buf1, NONE, strlen(NONE)); |