[pairing] Rename 'remote_pairing_read_pin' to

'remote_pairing_kickoff_byfile'
This commit is contained in:
chme 2017-03-19 08:20:08 +01:00 committed by ejurgensen
parent b86c0b0520
commit 8ed1c9c0ec
3 changed files with 3 additions and 3 deletions

View File

@ -523,7 +523,7 @@ process_file(char *file, struct stat *sb, int type, int flags, int dir_id)
if (flags & F_SCAN_BULK) if (flags & F_SCAN_BULK)
DPRINTF(E_LOG, L_SCAN, "Bulk scan will ignore '%s' (to process, add it after startup)\n", file); DPRINTF(E_LOG, L_SCAN, "Bulk scan will ignore '%s' (to process, add it after startup)\n", file);
else else
remote_pairing_read_pin(file); remote_pairing_kickoff_byfile(file);
break; break;
case FILE_CTRL_LASTFM: case FILE_CTRL_LASTFM:

View File

@ -781,7 +781,7 @@ touch_remote_cb(const char *name, const char *type, const char *domain, const ch
/* Thread: filescanner */ /* Thread: filescanner */
void void
remote_pairing_read_pin(char *path) remote_pairing_kickoff_byfile(char *path)
{ {
char buf[256]; char buf[256];
FILE *fp; FILE *fp;

View File

@ -3,7 +3,7 @@
#define __REMOTE_PAIRING_H__ #define __REMOTE_PAIRING_H__
void void
remote_pairing_read_pin(char *path); remote_pairing_kickoff_byfile(char *path);
int int
remote_pairing_init(void); remote_pairing_init(void);