1 From faf1ebab9ce65a8ec7b8bb83f0e969396417cfd5 Mon Sep 17 00:00:00 2001
2 From: gregor herrmann <gregoa@debian.org>
3 Date: Fri, 4 Nov 2011 20:42:19 +0100
4 Subject: [PATCH] Output actually used config file name instead of hardcoded
5 ~/.bti in request_access_token().
7 This was reported by Vincent Lefevre in http://bugs.debian.org/646681
10 1 files changed, 2 insertions(+), 2 deletions(-)
12 diff --git a/bti.c b/bti.c
13 index 8478345..11cd0ab 100644
16 @@ -519,10 +519,10 @@ static int request_access_token(struct session *session)
19 "Please put these two lines in your bti "
20 - "configuration file (~/.bti):\n"
21 + "configuration file (%s):\n"
22 "access_token_key=%s\n"
23 "access_token_secret=%s\n",
25 + session->configfile, at_key, at_secret);