Selaa lähdekoodia

Avoid possible ambiguity of function names

Bob Mottram 8 vuotta sitten
vanhempi
commit
53d1ec4b21
2 muutettua tiedostoa jossa 4 lisäystä ja 4 poistoa
  1. 2
    2
      src/freedombone-config
  2. 2
    2
      src/freedombone-remote

+ 2
- 2
src/freedombone-config Näytä tiedosto

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

+ 2
- 2
src/freedombone-remote Näytä tiedosto

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