~ubuntu-branches/ubuntu/hoary/eterm/hoary

« back to all changes in this revision

Viewing changes to src/libscream.c

  • Committer: Bazaar Package Importer
  • Author(s): Laurence J. Lane
  • Date: 2004-05-04 09:30:14 UTC
  • Revision ID: james.westby@ubuntu.com-20040504093014-1028s5aqsnrhh2gu
Tags: 0.9.2-8
src/startup.c: disable use of ~/user.cfg, patch provdided by Michael
Jennings. Thanks.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1374
1374
        if (!(sess->sysrc = STRDUP(getenv("SCREENRC"))))
1375
1375
            goto fail;
1376
1376
    } else {
1377
 
        char *loc[] = { "/usr/local/etc/screenrc",      /* official */
1378
 
            "/etc/screenrc",    /* actual (on SuSE) */
1379
 
            "/usr/etc/screenrc",
1380
 
            "/opt/etc/screenrc"
 
1377
        char *loc[] = {
 
1378
          "/usr/local/etc/screenrc",      /* official */
 
1379
          "/etc/screenrc",    /* actual (on SuSE) */
 
1380
          "/usr/etc/screenrc",
 
1381
          "/opt/etc/screenrc",
 
1382
          "/etc/screen/screenrc"
1381
1383
        };
1382
1384
        int n, nloc = sizeof(loc) / sizeof(char *);
1383
1385