Coverity CID 2746: Remove useless test.

This commit is contained in:
christos 2006-03-22 04:11:15 +00:00
parent 9c52d6aebc
commit ded5be2fff
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: am_ops.c,v 1.8 2006/03/18 20:40:53 christos Exp $ */
/* $NetBSD: am_ops.c,v 1.9 2006/03/22 04:11:15 christos Exp $ */
/*
* Copyright (c) 1997-2005 Erez Zadok
@ -348,7 +348,7 @@ merge_opts(const char *opts1, const char *opts2)
}
/* finally, append opts2 itself */
if (newstr && newstr[0]) {
if (newstr[0]) {
xstrlcat(newstr, ",", len);
xstrlcat(newstr, opts2, len);
} else {