patches/shishi-01-min.diff
author drdoug007
Sat, 28 Jul 2007 02:07:00 +0000
changeset 354 51fde3402cdb
permissions -rw-r--r--
2007-07-28 Doug Scott <[email protected]> * SFEgsslib.spec: *NEW* GNU gss (/usr/gnu) * SFEjabberd.spec: *NEW* Jabber server * SFEshishi.spec: *NEW* GNU Kerb V5 authentication * SFEfix-info-dir.spec: *NEW* updates /usr/share/info/dir * SFElibtasn1.spec: *NEW* Tiny ASN.1 library * SFElibgsasl.spec: *NEW* GNU SASL framework * SFElibntlm.spec: *NEW* Microsoft's NTLM authentication library * patches/shishi-02-include_next.diff: SS12 include_next bug * patches/jabberd-01-string-conversion.diff: type difference * patches/fix-info-dir-01-gccism.diff: Remove gcc specifics * patches/shishi-01-min.diff: add MIN macro
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
354
51fde3402cdb 2007-07-28 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
     1
--- shishi-0.0.32/lib/tkts.c.orig	2007-07-27 22:12:06.498009754 +0700
51fde3402cdb 2007-07-28 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
     2
+++ shishi-0.0.32/lib/tkts.c	2007-07-27 22:12:15.394054880 +0700
51fde3402cdb 2007-07-28 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
     3
@@ -22,6 +22,8 @@
51fde3402cdb 2007-07-28 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
     4
 
51fde3402cdb 2007-07-28 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
     5
 #include "internal.h"
51fde3402cdb 2007-07-28 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
     6
 
51fde3402cdb 2007-07-28 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
     7
+#define MIN(a,b) (((a)<(b))?(a):(b))
51fde3402cdb 2007-07-28 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
     8
+
51fde3402cdb 2007-07-28 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
     9
 struct Shishi_tkts
51fde3402cdb 2007-07-28 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
    10
 {
51fde3402cdb 2007-07-28 Doug Scott <[email protected]>
drdoug007
parents:
diff changeset
    11
   Shishi *handle;