#
-# "$Id: Makefile,v 1.1.2.1 2001/04/02 19:53:14 mike Exp $"
+# "$Id: Makefile,v 1.1.2.2 2001/05/14 18:01:22 mike Exp $"
#
# Notifier makefile for the Common UNIX Printing System (CUPS).
#
include ../Makedefs
-TARGETS = mailto
-OBJS = mailto.o
+TARGETS = indp ippget mailto
+OBJS = indp.o ippget.o mailto.o
#
$(INSTALL_BIN) $(TARGETS) $(SERVERBIN)/notifier
+#
+# indp
+#
+
+indp: indp.o ../cups/$(LIBCUPS)
+ echo Linking $@...
+ $(CC) $(LDFLAGS) -o indp indp.o $(LIBS)
+
+indp.o: ../cups/cups.h ../cups/ipp.h ../cups/language.h \
+ ../cups/string.h
+
+
+#
+# ippget
+#
+
+ippget: ippget.o ../cups/$(LIBCUPS)
+ echo Linking $@...
+ $(CC) $(LDFLAGS) -o ippget ippget.o $(LIBS)
+
+ippget.o: ../cups/cups.h ../cups/ipp.h ../cups/language.h \
+ ../cups/string.h
+
+
#
# mailto
#
$(OBJS): ../config.h ../Makedefs
#
-# End of "$Id: Makefile,v 1.1.2.1 2001/04/02 19:53:14 mike Exp $".
+# End of "$Id: Makefile,v 1.1.2.2 2001/05/14 18:01:22 mike Exp $".
#
/*
- * "$Id: client.c,v 1.91.2.2 2001/05/13 18:38:34 mike Exp $"
+ * "$Id: client.c,v 1.91.2.3 2001/05/14 18:01:22 mike Exp $"
*
* Client routines for the Common UNIX Printing System (CUPS) scheduler.
*
httpPrintf(HTTP(con), "\r\n");
EncryptClient(con);
+
+ status = IsAuthorized(con);
#else
if (!SendError(con, HTTP_NOT_IMPLEMENTED))
{
#endif /* HAVE_LIBSSL */
}
- if ((status = IsAuthorized(con)) != HTTP_OK)
+ if (status != HTTP_OK)
{
SendError(con, status);
CloseClient(con);
/*
- * End of "$Id: client.c,v 1.91.2.2 2001/05/13 18:38:34 mike Exp $".
+ * End of "$Id: client.c,v 1.91.2.3 2001/05/14 18:01:22 mike Exp $".
*/