Преглед изворни кода

Avoid possible ambiguity of function names

Bob Mottram пре 8 година
родитељ
комит
53d1ec4b21
2 измењених фајлова са 4 додато и 4 уклоњено
  1. 2
    2
      src/freedombone-config
  2. 2
    2
      src/freedombone-remote

+ 2
- 2
src/freedombone-config Прегледај датотеку

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 Прегледај датотеку

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