Changeset 1169:71460e4a7460 for complete.c
- Timestamp:
- 1999-07-29 02:13:03 (9 years ago)
- Branch:
- HEAD
- Files:
-
- 1 modified
-
complete.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
complete.c
r1111 r1169 34 34 * return 0 if ok, -1 if no matches 35 35 */ 36 int mutt_complete (char *s )36 int mutt_complete (char *s, size_t slen) 37 37 { 38 38 char *p; … … 64 64 if (mx_is_imap (imap_path)) 65 65 { 66 return imap_complete (s, imap_path);66 return imap_complete (s, slen, imap_path); 67 67 } 68 68 #endif
