~ubuntu-branches/ubuntu/precise/grace/precise

« back to all changes in this revision

Viewing changes to src/plotone.c

  • Committer: Bazaar Package Importer
  • Author(s): Nicholas Breen
  • Date: 2011-01-23 16:07:14 UTC
  • mfrom: (4.1.9 sid)
  • Revision ID: james.westby@ubuntu.com-20110123160714-hcg36gttonbqjmxx
Tags: 1:5.1.22-9
* copyright: Update contact info and years.
* grace.menu: Move from Science/Mathematics to Science/Data Analysis.
  Change hints to longtitle.  (Closes: #606965) 
* patches/tmpnam_to_mkstemp.diff: Create temporary files in /tmp rather
  than working directory.
* rules: Hardcode use of xterm instead of x-terminal-emulator to work
  around the auto-backgrounding "feature" of konsole/gnome-terminal.
  (Closes: #601829)
  - control: Add Depends: on xterm.
* patches/*: Add DEP-3 headers.  Rename grace_manpage_debian_warning.diff
  to the more general manpages.diff.
* grace.overrides: Override lintian empty directory warning on
  /usr/share/fonts/type1, which is populated in the postinst.

Show diffs side-by-side

added added

removed removed

Lines of Context:
130
130
            errmsg("No print command defined, output aborted");
131
131
            return;
132
132
        }
133
 
        strcpy(fname, "grace-hardcopy-XXXXXX");
 
133
        strcpy(fname, "/tmp/grace-hardcopy-XXXXXX");
134
134
        hdfd=mkstemp(fname);
135
135
        if (hdfd == -1) {
136
136
                errmsg("Could not create a temporary file, output aborted.");