/[rdesktop]/sourceforge.net/trunk/rdesktop/rdesktop.c
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /sourceforge.net/trunk/rdesktop/rdesktop.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 79 by astrand, Mon Jul 29 20:35:13 2002 UTC revision 82 by astrand, Tue Jul 30 07:18:48 2002 UTC
# Line 83  main(int argc, char *argv[]) Line 83  main(int argc, char *argv[])
83          int c;          int c;
84    
85          printf("rdesktop: A Remote Desktop Protocol client.\n");          printf("rdesktop: A Remote Desktop Protocol client.\n");
86          printf("Version " VERSION          printf("Version " VERSION ". Copyright (C) 1999-2001 Matt Chapman.\n");
                ". Copyright (C) 1999-2001 Matt Chapman.\n");  
87          printf("See http://www.rdesktop.org/ for more information.\n\n");          printf("See http://www.rdesktop.org/ for more information.\n\n");
88    
89          flags = RDP_LOGON_NORMAL;          flags = RDP_LOGON_NORMAL;
# Line 121  main(int argc, char *argv[]) Line 120  main(int argc, char *argv[])
120                                  break;                                  break;
121    
122                          case 'k':                          case 'k':
123                                  STRNCPY(keymapname, optarg,                                  STRNCPY(keymapname, optarg, sizeof(keymapname));
                                         sizeof(keymapname));  
124                                  break;                                  break;
125    
126                          case 'g':                          case 'g':
# Line 229  main(int argc, char *argv[]) Line 227  main(int argc, char *argv[])
227          strncat(title, server, sizeof(title) - sizeof("rdesktop - "));          strncat(title, server, sizeof(title) - sizeof("rdesktop - "));
228    
229          xkeymap_init1();          xkeymap_init1();
230            if (!ui_init())
231                    return 1;
232    
233          if (!rdp_connect(server, flags, domain, password, shell, directory))          if (!rdp_connect(server, flags, domain, password, shell, directory))
234                  return 1;                  return 1;
# Line 356  hexdump(unsigned char *p, unsigned int l Line 356  hexdump(unsigned char *p, unsigned int l
356                          printf("   ");                          printf("   ");
357    
358                  for (i = 0; i < thisline; i++)                  for (i = 0; i < thisline; i++)
359                          printf("%c",                          printf("%c", (line[i] >= 0x20 && line[i] < 0x7f) ? line[i] : '.');
                                (line[i] >= 0x20  
                                 && line[i] < 0x7f) ? line[i] : '.');  
360    
361                  printf("\n");                  printf("\n");
362                  offset += thisline;                  offset += thisline;

Legend:
Removed from v.79  
changed lines
  Added in v.82

  ViewVC Help
Powered by ViewVC 1.1.26