Ignore:
Timestamp:
Nov 24, 2016, 1:14:11 PM (9 years ago)
Author:
Silvan Scherrer
Message:

Samba Server: update vendor to version 4.4.3

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vendor/current/libcli/smbreadline/smbreadline.c

    r740 r988  
    138138                warnings in some.  */
    139139                rl_attempted_completion_function = RL_COMPLETION_CAST completion_fn;
     140
     141                /*
     142                 * We only want sensible characters as the word-break chars
     143                 * for the most part. This allows us to tab through a path.
     144                 */
     145                rl_basic_word_break_characters = " \t\n";
    140146        }
    141147
    142148#if HAVE_DECL_RL_EVENT_HOOK
    143149        if (callback)
    144                 rl_event_hook = (Function *)callback;
     150                rl_event_hook = (rl_hook_func_t *)callback;
    145151#endif
    146152        ret = readline(prompt);
Note: See TracChangeset for help on using the changeset viewer.