Commit 3bec18b46ef2afdd460dfabfca087b25ae708120
1 parent
d83b690b
Exists in
master
and in
3 other branches
Fixing package build.
Showing
1 changed file
with
6 additions
and
1 deletions
Show diff stats
src/objects/window/keyfile.c
| ... | ... | @@ -28,6 +28,11 @@ |
| 28 | 28 | */ |
| 29 | 29 | |
| 30 | 30 | #include <config.h> |
| 31 | + #include <glib.h> | |
| 32 | + #include <glib/gstdio.h> | |
| 33 | + #include <fcntl.h> | |
| 34 | + #include <sys/types.h> | |
| 35 | + #include <sys/stat.h> | |
| 31 | 36 | #include <lib3270.h> |
| 32 | 37 | #include <lib3270/log.h> |
| 33 | 38 | #include <v3270.h> |
| ... | ... | @@ -225,7 +230,7 @@ void v3270_key_file_close(GtkWidget *terminal) { |
| 225 | 230 | |
| 226 | 231 | #else |
| 227 | 232 | |
| 228 | - const struct SessionDescriptor * descriptor = v3270_get_session_descriptor(widget); | |
| 233 | + const V3270KeyFile * descriptor = v3270_get_session_descriptor(widget); | |
| 229 | 234 | |
| 230 | 235 | if(!(descriptor && *descriptor->filename)) |
| 231 | 236 | return FALSE; | ... | ... |