Commit 7de83c64fada4d198e2e2b6f66f49c3f536562c0
1 parent
6902e2c2
Exists in
master
and in
3 other branches
work in progress
Showing
2 changed files
with
4 additions
and
3 deletions
Show diff stats
init.c
@@ -107,7 +107,7 @@ static void update_selection(H3270 *session, int start, int end) | @@ -107,7 +107,7 @@ static void update_selection(H3270 *session, int start, int end) | ||
107 | { | 107 | { |
108 | } | 108 | } |
109 | 109 | ||
110 | -static void *cursor(H3270 *session, LIB3270_CURSOR id) | 110 | +static void set_cursor(H3270 *session, LIB3270_CURSOR id) |
111 | { | 111 | { |
112 | } | 112 | } |
113 | 113 | ||
@@ -135,7 +135,7 @@ static void lib3270_session_init(H3270 *hSession, const char *model) | @@ -135,7 +135,7 @@ static void lib3270_session_init(H3270 *hSession, const char *model) | ||
135 | hSession->resume = screen_disp; | 135 | hSession->resume = screen_disp; |
136 | hSession->update_oia = update_oia; | 136 | hSession->update_oia = update_oia; |
137 | hSession->update_selection = update_selection; | 137 | hSession->update_selection = update_selection; |
138 | - hSession->cursor = cursor; | 138 | + hSession->cursor = set_cursor; |
139 | 139 | ||
140 | hSession->sock = -1; | 140 | hSession->sock = -1; |
141 | hSession->model_num = -1; | 141 | hSession->model_num = -1; |
trace_ds.c
@@ -576,7 +576,7 @@ get_tracef_max(void) | @@ -576,7 +576,7 @@ get_tracef_max(void) | ||
576 | } | 576 | } |
577 | */ | 577 | */ |
578 | 578 | ||
579 | -/* Parse the name '/dev/fd<n>', so we can simulate it. */ | 579 | +/* Parse the name '/dev/fd<n>', so we can simulate it. */ /* |
580 | static int | 580 | static int |
581 | get_devfd(const char *pathname) | 581 | get_devfd(const char *pathname) |
582 | { | 582 | { |
@@ -590,6 +590,7 @@ get_devfd(const char *pathname) | @@ -590,6 +590,7 @@ get_devfd(const char *pathname) | ||
590 | return -1; | 590 | return -1; |
591 | return fd; | 591 | return fd; |
592 | } | 592 | } |
593 | +*/ | ||
593 | 594 | ||
594 | /* Callback for "OK" button on trace popup */ /* | 595 | /* Callback for "OK" button on trace popup */ /* |
595 | static void tracefile_callback(Widget w, XtPointer client_data, XtPointer call_data unused) | 596 | static void tracefile_callback(Widget w, XtPointer client_data, XtPointer call_data unused) |