Todd Zullinger <tmz@xxxxxxxxx> writes: > - ret |= !strstr(gpg_status.buf, "\n[GNUPG:] SIG_CREATED "); > + string_list_split_in_place(&lines, gpg_status.buf, '\n', -1); > + ret |= !unsorted_string_list_has_string(&lines, "[GNUPG:] SIG_CREATED "); Is "SIG_CREATED " supposed to be at the end of that line? I thought that has_string() asks for an exact match, and unfortunately(?) there is not the string_list_has_string_that_has_this_prefix() function. So...