Browse Source

Avoid possible ambiguity of function names

Bob Mottram 8 years ago
parent
commit
53d1ec4b21
2 changed files with 4 additions and 4 deletions
  1. 2
    2
      src/freedombone-config
  2. 2
    2
      src/freedombone-remote

+ 2
- 2
src/freedombone-config View File

788
 	fi
788
 	fi
789
 }
789
 }
790
 
790
 
791
-function interactive_configuration {
791
+function interactive_config {
792
 	# create a temporary copy of the configuration file
792
 	# create a temporary copy of the configuration file
793
 	# which can be used to pre-populate selections
793
 	# which can be used to pre-populate selections
794
 	if [ -f $CONFIGURATION_FILE ]; then
794
 	if [ -f $CONFIGURATION_FILE ]; then
2192
 }
2192
 }
2193
 
2193
 
2194
 read_configuration
2194
 read_configuration
2195
-interactive_configuration
2195
+interactive_config
2196
 show_result
2196
 show_result
2197
 exit 0
2197
 exit 0

+ 2
- 2
src/freedombone-remote View File

116
 	shift
116
 	shift
117
 done
117
 done
118
 
118
 
119
-function interactive_configuration_remote_backups {
119
+function interactive_config_remote_backups {
120
 	if [ ! $MY_USERNAME ]; then
120
 	if [ ! $MY_USERNAME ]; then
121
 		echo $'Please specify a username with the -u option'
121
 		echo $'Please specify a username with the -u option'
122
 		exit 7356
122
 		exit 7356
259
 	FRIENDS_SERVERS_LIST=/home/$MY_USERNAME/backup.list
259
 	FRIENDS_SERVERS_LIST=/home/$MY_USERNAME/backup.list
260
 fi
260
 fi
261
 
261
 
262
-interactive_configuration_remote_backups
262
+interactive_config_remote_backups
263
 show_result
263
 show_result
264
 exit 0
264
 exit 0