~ubuntu-branches/ubuntu/dapper/openssh/dapper

« back to all changes in this revision

Viewing changes to misc.h

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2006-02-20 14:49:20 UTC
  • mfrom: (1.2.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20060220144920-as039iixs6pqzzsx
Tags: 1:4.2p1-5ubuntu2
* SECURITY UPDATE: Shell code injection with crafted file names in scp.
* Ported upstream patch from 4.3p2 to replace system() call with a proper
  exec() call; this avoids expanding shell metacharacters in local-to-local
  or remote-to-remote copies.
* CVE-2006-0225

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
        u_int   num;
37
37
        u_int   nalloc;
38
38
};
39
 
void     addargs(arglist *, char *, ...) __attribute__((format(printf, 2, 3)));
 
39
void     addargs(arglist *, char *, ...)
 
40
             __attribute__((format(printf, 2, 3)));
 
41
void     replacearg(arglist *, u_int, char *, ...)
 
42
             __attribute__((format(printf, 3, 4)));
 
43
void     freeargs(arglist *);
40
44
 
41
45
/* readpass.c */
42
46