diff options
author | lkoeller <lkoeller@FreeBSD.org> | 2004-03-20 04:29:00 +0800 |
---|---|---|
committer | lkoeller <lkoeller@FreeBSD.org> | 2004-03-20 04:29:00 +0800 |
commit | 659e078987459222c8eebf2768deeb17cdf3b11b (patch) | |
tree | ca1a558d48b117b6b9e541d9828a1f7d4c9ebe2b /sysutils/bacula-server | |
parent | 16fc5f23d1fcff79019450b03938d2aa693ba7bd (diff) | |
download | freebsd-ports-gnome-659e078987459222c8eebf2768deeb17cdf3b11b.tar.gz freebsd-ports-gnome-659e078987459222c8eebf2768deeb17cdf3b11b.tar.zst freebsd-ports-gnome-659e078987459222c8eebf2768deeb17cdf3b11b.zip |
o) Remove patch to solve alpha compile problems, cause the fix is already
included in the sources.
Diffstat (limited to 'sysutils/bacula-server')
-rw-r--r-- | sysutils/bacula-server/files/patch-var.c-alpha | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/sysutils/bacula-server/files/patch-var.c-alpha b/sysutils/bacula-server/files/patch-var.c-alpha deleted file mode 100644 index dcad5d9363d5..000000000000 --- a/sysutils/bacula-server/files/patch-var.c-alpha +++ /dev/null @@ -1,36 +0,0 @@ -*** src/lib/var.c.orig Tue Mar 9 21:11:30 2004 ---- src/lib/var.c Tue Mar 9 21:12:46 2004 -*************** -*** 120,126 **** - int n; - int bytes; - -! if (format == NULL) - return -1; - bytes = 0; - while (*format != '\0') { ---- 120,126 ---- - int n; - int bytes; - -! if (format == NULL || ap == NULL) - return -1; - bytes = 0; - while (*format != '\0') { -*************** -*** 204,210 **** - int n; - var_mvsnprintf_cb_t ctx; - -! if (format == NULL) - return -1; - if (buffer != NULL && bufsize == 0) - return -1; ---- 204,210 ---- - int n; - var_mvsnprintf_cb_t ctx; - -! if (format == NULL || ap == NULL) - return -1; - if (buffer != NULL && bufsize == 0) - return -1; |