Commit 4ccf5c18d31f2318e38486726e14b10fc3efd4c0

Authored by Perry Werneck
1 parent a771f7ec
Exists in master and in 1 other branch develop

Addint testpattern command on v3270 trace windows.

Showing 1 changed file with 6 additions and 0 deletions   Show diff stats
src/trace/exec.c
... ... @@ -211,6 +211,12 @@
211 211 return 0;
212 212 }
213 213  
  214 + if(g_str_has_prefix(cmdline,"pattern"))
  215 + {
  216 + lib3270_testpattern(hSession);
  217 + return 0;
  218 + }
  219 +
214 220 if(g_str_has_suffix(cmdline,"?"))
215 221 {
216 222 gchar * str = strchr(cmdline,'?');
... ...