aboutsummaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'main.c')
-rw-r--r--main.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/main.c b/main.c
index 810ff65..d846674 100644
--- a/main.c
+++ b/main.c
@@ -108,7 +108,7 @@ int main(int argc, char* argv[]){
if( nameOrNumber = (*optarg == '+' ) )
r = findContact(optarg, &contact);
else
- r = findContactFromName(optarg, &contact);
+ r = findContactFromName(optarg, &contact, NULL);
if( r ) {
#ifdef DEBUG
@@ -284,12 +284,10 @@ int main(int argc, char* argv[]){
contact* found = NULL;
move(LINES-1,0);
readline_n("> ", "");
- int r = findContactFromName(msg_win_str, &found);
+ int r = findContactFromName(msg_win_str, &found, getContactSelected());
if( r == 0 ) {
setContactSelection(found);
- } else {
- printf("[%d]%s\n", r, msg_win_str);
}
curs_set(0);
showContactListW();