aboutsummaryrefslogtreecommitdiffstats
path: root/src/gnutls.h
diff options
context:
space:
mode:
authorJuanma Barranquero2011-05-05 01:56:09 +0200
committerJuanma Barranquero2011-05-05 01:56:09 +0200
commite968f4f300f67fe65ea5df010e6ee461f5d6df92 (patch)
treee66fd3d5b04f6b18be5a49f6e9ec00067f990d76 /src/gnutls.h
parent84d358f0d559acc398b019660c4a1a3a50fd6bb2 (diff)
downloademacs-e968f4f300f67fe65ea5df010e6ee461f5d6df92.tar.gz
emacs-e968f4f300f67fe65ea5df010e6ee461f5d6df92.zip
src/gnutls.c: Remove unused parameter `fildes'.
* gnutls.h (emacs_gnutls_write, emacs_gnutls_read): * gnutls.c (emacs_gnutls_write, emacs_gnutls_read): Remove unused parameter `fildes'. * process.c (read_process_output, send_process): Don't pass it.
Diffstat (limited to 'src/gnutls.h')
-rw-r--r--src/gnutls.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/gnutls.h b/src/gnutls.h
index afe6337fac2..e2a9bc9eaea 100644
--- a/src/gnutls.h
+++ b/src/gnutls.h
@@ -54,11 +54,9 @@ typedef enum
54#define GNUTLS_LOG2(level, max, string, extra) if (level <= max) { gnutls_log_function2 (level, "(Emacs) " string, extra); } 54#define GNUTLS_LOG2(level, max, string, extra) if (level <= max) { gnutls_log_function2 (level, "(Emacs) " string, extra); }
55 55
56extern EMACS_INT 56extern EMACS_INT
57emacs_gnutls_write (int fildes, struct Lisp_Process *proc, const char *buf, 57emacs_gnutls_write (struct Lisp_Process *proc, const char *buf, EMACS_INT nbyte);
58 EMACS_INT nbyte);
59extern EMACS_INT 58extern EMACS_INT
60emacs_gnutls_read (int fildes, struct Lisp_Process *proc, char *buf, 59emacs_gnutls_read (struct Lisp_Process *proc, char *buf, EMACS_INT nbyte);
61 EMACS_INT nbyte);
62 60
63extern int emacs_gnutls_record_check_pending (gnutls_session_t state); 61extern int emacs_gnutls_record_check_pending (gnutls_session_t state);
64extern void emacs_gnutls_transport_set_errno (gnutls_session_t state, int err); 62extern void emacs_gnutls_transport_set_errno (gnutls_session_t state, int err);