]> git.refcnt.org Git - distdns.git/blobdiff - client.pl
Use quotes in option processing error messages
[distdns.git] / client.pl
index c83694c3381068668600e0250afb9828625cd3c2..0563c5cf26602aba7054d500d40e83a45bffa973 100755 (executable)
--- a/client.pl
+++ b/client.pl
@@ -61,13 +61,13 @@ my $get_config_opts = sub
 {
     my ($section, $options) = @_;
 
-    _die "Section $section missing in $conf_file\n" unless exists $config->{$section};
+    _die "Section '$section' missing in $conf_file\n" unless exists $config->{$section};
 
     my %options;
     @options{@$options} = @{$config->{$section}}{@$options};
 
     foreach my $option (@$options) {
-        _die "Option $option not set in $conf_file\n" unless defined $options{$option} && length $options{$option};
+        _die "Option '$option' not set in $conf_file\n" unless defined $options{$option} && length $options{$option};
     }
 
     return @options{@$options};