Revision 053a08f5bba3444d40516baf30a5d61e42e4fb93 authored by Junio C Hamano on 16 October 2012, 18:44:37 UTC, committed by Junio C Hamano on 16 October 2012, 18:44:37 UTC
Fixes a regression in maint-1.7.11 (v1.7.11.7), maint (v1.7.12.1)
and master (v1.8.0-rc0).

* jk/maint-http-half-auth-push:
  http: fix segfault in handle_curl_result
2 parent s 9306b5b + 188923f
Raw File
prompt.h
#ifndef PROMPT_H
#define PROMPT_H

#define PROMPT_ASKPASS (1<<0)
#define PROMPT_ECHO    (1<<1)

char *git_prompt(const char *prompt, int flags);
char *git_getpass(const char *prompt);

#endif /* PROMPT_H */
back to top