File: debpkg-wrapper.c

package info (click to toggle)
devscripts 2.23.4%2Bdeb12u2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 8,228 kB
  • sloc: perl: 26,224; sh: 11,330; python: 3,880; makefile: 350; ansic: 11
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;
}