From: Ondrej Filip Date: Mon, 31 May 2004 13:32:58 +0000 (+0000) Subject: Small change to compile client on FreeBSD. X-Git-Tag: v1.2.0~409 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bd62eeca27aba7da34a65a8f039d1b011115ddca;p=thirdparty%2Fbird.git Small change to compile client on FreeBSD. --- diff --git a/client/client.c b/client/client.c index 424e119de..f1c73c430 100644 --- a/client/client.c +++ b/client/client.c @@ -127,7 +127,9 @@ void input_start_list(void) /* Leave the currently edited line and make space for listing */ { _rl_move_vert(_rl_vis_botlin); +#ifdef HAVE_RL_CRLF rl_crlf(); +#endif } void @@ -155,7 +157,9 @@ input_complete(int arg, int key) break; default: complete_flag = 1; +#ifdef HAVE_RL_DING rl_ding(); +#endif } return 0; }