File: debpkg-wrapper.c

package info (click to toggle)
devscripts 2.9.26etch5
  • links: PTS
  • area: main
  • in suites: etch
  • size: 1,752 kB
  • ctags: 323
  • sloc: perl: 8,642; sh: 3,590; makefile: 153; ansic: 17
file content (17 lines) | stat: -rw-r--r-- 379 bytes parent folder | download | duplicates (15)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* Wrapper for debpkg so that we don't have to use suidperl any longer
   (it's deprecated as of Perl 5.8.0) */

#include <stdio.h>
#include <unistd.h>
#include <errno.h>
#include <string.h>

#define REAL_PATH "/usr/share/devscripts/debpkg"

int main(int ac, char **av)
{
  execv(REAL_PATH, av);

  fprintf(stderr, "Error executing debpkg: %s\n", strerror(errno));
  return 1;
}