diff options
author | Michael Brown <mcb30@etherboot.org> | 2005-05-01 15:50:08 +0000 |
---|---|---|
committer | Michael Brown <mcb30@etherboot.org> | 2005-05-01 15:50:08 +0000 |
commit | 17bb10479d6ec73886713e182a8ab7551bca9aa7 (patch) | |
tree | 1cad69c53f7724be266b654283d008e521475633 /src/proto | |
parent | 6afffc0771f50301276cb67ef9637f51987f4c7c (diff) | |
download | ipxe-17bb10479d6ec73886713e182a8ab7551bca9aa7.tar.gz |
Protocol names are x-slam and x-tftm
Diffstat (limited to 'src/proto')
-rw-r--r-- | src/proto/slam.c | 2 | ||||
-rw-r--r-- | src/proto/tftm.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/proto/slam.c b/src/proto/slam.c index be824aa37..4ea296b8e 100644 --- a/src/proto/slam.c +++ b/src/proto/slam.c @@ -532,5 +532,5 @@ static int url_slam ( char *url __unused, } static struct protocol slam_protocol __protocol = { - "slam", url_slam + "x-slam", url_slam }; diff --git a/src/proto/tftm.c b/src/proto/tftm.c index d2318a6e0..396be4229 100644 --- a/src/proto/tftm.c +++ b/src/proto/tftm.c @@ -482,5 +482,5 @@ static int opt_get_multicast(struct tftp_t *tr, unsigned short *len, } static struct protocol tftm_protocol __protocol = { - "tftm", url_tftm + "x-tftm", url_tftm }; |