| 1350 | */ |
| 1351 | |
| 1352 | static void make1bind( TARGET * t ) |
| 1353 | { |
| 1354 | if ( t->flags & T_FLAG_NOTFILE ) |
| 1355 | return; |
| 1356 | |
| 1357 | pushsettings( root_module(), t->settings ); |
| 1358 | object_free( t->boundname ); |
| 1359 | t->boundname = search( t->name, &t->time, 0, t->flags & T_FLAG_ISFILE ); |
| 1360 | t->binding = timestamp_empty( &t->time ) ? T_BIND_MISSING : T_BIND_EXISTS; |
| 1361 | popsettings( root_module(), t->settings ); |
| 1362 | } |
| 1363 | |
| 1364 | |
| 1365 | static int targets_contains( TARGETS * l, TARGET * t ) |
no test coverage detected