Return the value of a configuration switch. Definition at line 286 of file config.c. 00287 { 00288 struct config_entry *ent; 00289 00290 ent = config_search(opt); 00291 g_assert(ent != NULL); 00292 00293 /* Return the default if it is unset */ 00294 return (ent->curval ? ent->curval : ent->defval); 00295 }
Here is the call graph for this function:
![]()
Here is the caller graph for this function:
![]() |
1.6.3