diff options
Diffstat (limited to 'src/hci/commands/nvo_cmd.c')
| -rw-r--r-- | src/hci/commands/nvo_cmd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/hci/commands/nvo_cmd.c b/src/hci/commands/nvo_cmd.c index e2fdd8fbf..c0c07280b 100644 --- a/src/hci/commands/nvo_cmd.c +++ b/src/hci/commands/nvo_cmd.c @@ -16,8 +16,8 @@ static int show_exec ( int argc, char **argv ) { return 1; } - if ( ( rc = fetch_named_setting ( argv[1], buf, - sizeof ( buf ) ) ) < 0 ){ + if ( ( rc = fetchf_named_setting ( argv[1], buf, + sizeof ( buf ) ) ) < 0 ){ printf ( "Could not find \"%s\": %s\n", argv[1], strerror ( rc ) ); return 1; @@ -35,7 +35,7 @@ static int set_exec ( int argc, char **argv ) { return 1; } - if ( ( rc = store_named_setting ( argv[1], argv[2] ) ) != 0 ) { + if ( ( rc = storef_named_setting ( argv[1], argv[2] ) ) != 0 ) { printf ( "Could not set \"%s\"=\"%s\": %s\n", argv[1], argv[2], strerror ( rc ) ); return 1; |
